18 lines
241 B
Nix
18 lines
241 B
Nix
|
{ ... }:
|
||
|
{
|
||
|
imports = [
|
||
|
./ssh.nix
|
||
|
./shell
|
||
|
];
|
||
|
programs.git = {
|
||
|
enable = true;
|
||
|
userName = "Evie Litherland-Smith";
|
||
|
delta.enable = true;
|
||
|
extraConfig = {
|
||
|
pull = {
|
||
|
rebase = false;
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|