feat: add git home config
This commit is contained in:
parent
7fc2437bed
commit
ac8e402e8e
2 changed files with 13 additions and 0 deletions
|
|
@ -2,6 +2,7 @@
|
||||||
imports = [
|
imports = [
|
||||||
./alacritty.nix
|
./alacritty.nix
|
||||||
./fzf.nix
|
./fzf.nix
|
||||||
|
./git.nix
|
||||||
./gnupg.nix
|
./gnupg.nix
|
||||||
./neovim.nix
|
./neovim.nix
|
||||||
./sway.nix
|
./sway.nix
|
||||||
|
|
|
||||||
12
users/gandalf/modules/git.nix
Normal file
12
users/gandalf/modules/git.nix
Normal file
|
|
@ -0,0 +1,12 @@
|
||||||
|
{ ... }: {
|
||||||
|
programs.git = {
|
||||||
|
enable = true;
|
||||||
|
lfs.enable = true;
|
||||||
|
signing = {
|
||||||
|
signByDefault = true;
|
||||||
|
key = "732A612DAD28067D";
|
||||||
|
};
|
||||||
|
userEmail = "jacob.bachmann@posteo.de";
|
||||||
|
userName = "Jacob Bachmann";
|
||||||
|
};
|
||||||
|
}
|
||||||
Loading…
Add table
Add a link
Reference in a new issue