12 lines
228 B
Nix
12 lines
228 B
Nix
|
{
|
||
|
# Enable git and config
|
||
|
programs.git = let
|
||
|
secrets = import ../../nixos/common/secrets.nix;
|
||
|
in {
|
||
|
enable = true;
|
||
|
lfs.enable = true;
|
||
|
userName = secrets.jimUsername;
|
||
|
userEmail = secrets.jimEmail;
|
||
|
};
|
||
|
}
|