Add content for various configuration files in ~

Signed-off-by: George Kaklamanos <gkaklas@gkaklas.gr>
This commit is contained in:
George Kaklamanos 2024-04-28 22:59:14 +03:00
parent c082a20751
commit 1e5fb1d349
No known key found for this signature in database
GPG key ID: C0CAB8A6BDC9399D
2 changed files with 55 additions and 1 deletions

View file

@ -1,3 +1,7 @@
{pkgs, ...}: {
imports = [./fish.nix ./starship.nix];
imports = [
./homeFiles.nix
./fish.nix
./starship.nix
];
}

View file

@ -0,0 +1,50 @@
{
config,
pkgs,
lib,
...
}: {
home.file.".config/ripgrep/ignore".text = ''
-.
'';
home.file.".config/containers/storage.conf".text = ''
[storage]
rootless_storage_path="/mnt/storage/.containers"
'';
home.file.".config/keepassxc/keepassxc.ini".text = ''
[General]
ConfigVersion=2
MinimizeAfterUnlock=true
OpenPreviousDatabasesOnStartup=false
RememberLastDatabases=false
RememberLastKeyFiles=false
[Browser]
Enabled=true
[GUI]
CompactMode=true
MonospaceNotes=true
[PasswordGenerator]
AdditionalChars=
AdvancedMode=true
Dashes=false
ExcludedChars=
Length=64
Logograms=true
LowerCase=true
Numbers=true
Punctuation=false
UpperCase=true
[SSHAgent]
Enabled=true
[Security]
IconDownloadFallback=true
LockDatabaseScreenLock=false
'';
}