git is a proper module now
parent
1e7079e54c
commit
6543588596
1
home.nix
1
home.nix
|
@ -3,7 +3,6 @@
|
||||||
{
|
{
|
||||||
imports = [
|
imports = [
|
||||||
./home/modules
|
./home/modules
|
||||||
./home/modules/git.nix
|
|
||||||
];
|
];
|
||||||
|
|
||||||
# Home Manager needs a bit of information about you and the paths it should
|
# Home Manager needs a bit of information about you and the paths it should
|
||||||
|
|
|
@ -4,7 +4,9 @@
|
||||||
./neovim.nix
|
./neovim.nix
|
||||||
./alacritty.nix
|
./alacritty.nix
|
||||||
./fish.nix
|
./fish.nix
|
||||||
|
./git.nix
|
||||||
];
|
];
|
||||||
|
|
||||||
snowhawk.fish.enable = lib.mkDefault true;
|
snowhawk.fish.enable = lib.mkDefault true;
|
||||||
|
snowhawk.git.enable = lib.mkDefault true;
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,12 @@
|
||||||
{ ... }:
|
{ lib, config, ... }:
|
||||||
|
let
|
||||||
|
cfg = config.snowhawk.git;
|
||||||
|
in
|
||||||
{
|
{
|
||||||
|
options.snowhawk.git = {
|
||||||
|
enable = lib.mkEnableOption "git";
|
||||||
|
};
|
||||||
|
config = lib.mkIf cfg.enable {
|
||||||
programs.git = {
|
programs.git = {
|
||||||
enable = true;
|
enable = true;
|
||||||
userName = "Zynh Ludwig";
|
userName = "Zynh Ludwig";
|
||||||
|
@ -38,4 +45,5 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue