git module

This commit is contained in:
Bryan Ramos 2024-05-12 11:05:08 -04:00
parent b3714ed696
commit 5c80915d81
Signed by: bryan
GPG key ID: 6ABDCD144D6643C8
2 changed files with 2 additions and 3 deletions

View file

@ -3,7 +3,6 @@
with lib; with lib;
let let
cfg = config.modules.user.git; cfg = config.modules.user.git;
bash = config.modules.user.bash;
in in
{ options.modules.user.git = { enable = mkEnableOption "user.git"; }; { options.modules.user.git = { enable = mkEnableOption "user.git"; };
@ -22,8 +21,8 @@ in
git-crypt git-crypt
]; ];
programs.bash.initExtra = mkAfter '' programs.bash.initExtra = ''
${import ./config/cdg.nix} ${import ./config/bashScripts/cdg.nix}
''; '';
}; };
} }