also removed clipmenu also removed programs.feh, the extra options aren't needed
14 lines
280 B
Nix
14 lines
280 B
Nix
{ config, ... }: {
|
|
programs.git = {
|
|
enable = true;
|
|
userName = "LavaDesu";
|
|
userEmail = "me@lava.moe";
|
|
signing = {
|
|
key = "059F098EBF0E9A13E10A46BF6500251E087653C9";
|
|
signByDefault = true;
|
|
};
|
|
extraConfig = {
|
|
core.abbrev = 11;
|
|
};
|
|
};
|
|
}
|