This commit is contained in:
Charlotte 🦝 Delenk 2022-01-18 14:49:11 +01:00
parent 4350b6b133
commit 2d1efc933a
Signed by: darkkirb
GPG key ID: 015E3768A70AFBC5
2 changed files with 11 additions and 0 deletions

View file

@ -2,5 +2,6 @@ desktop: { pkgs, ... }: {
imports = [
./base.nix
../programs/gpg.nix
../programs/git.nix
] ++ (if desktop then [ ../programs/sway.nix ../programs/firefox.nix ] else []);
}

10
config/programs/git.nix Normal file
View file

@ -0,0 +1,10 @@
{ pkgs, ... }: {
programs.git = {
enable = true;
package = pkgs.gitAndTools.gitFull;
lfs.enable = true;
signing.signByDefault = true;
userEmail = "lotte@chir.rs";
userName = "Charlotte 🦝 Delenk";
};
}