Add content for various configuration files in ~
Signed-off-by: George Kaklamanos <gkaklas@gkaklas.gr>
This commit is contained in:
parent
c082a20751
commit
1e5fb1d349
2 changed files with 55 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
{pkgs, ...}: {
|
||||
imports = [./fish.nix ./starship.nix];
|
||||
imports = [
|
||||
./homeFiles.nix
|
||||
./fish.nix
|
||||
./starship.nix
|
||||
];
|
||||
}
|
||||
|
|
50
home-manager/homeFiles.nix
Normal file
50
home-manager/homeFiles.nix
Normal 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
|
||||
'';
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue