git is a proper module now
This commit is contained in:
parent
1e7079e54c
commit
6543588596
3 changed files with 44 additions and 35 deletions
1
home.nix
1
home.nix
|
@ -3,7 +3,6 @@
|
|||
{
|
||||
imports = [
|
||||
./home/modules
|
||||
./home/modules/git.nix
|
||||
];
|
||||
|
||||
# Home Manager needs a bit of information about you and the paths it should
|
||||
|
|
|
@ -4,7 +4,9 @@
|
|||
./neovim.nix
|
||||
./alacritty.nix
|
||||
./fish.nix
|
||||
./git.nix
|
||||
];
|
||||
|
||||
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 = {
|
||||
enable = true;
|
||||
userName = "Zynh Ludwig";
|
||||
|
@ -38,4 +45,5 @@
|
|||
};
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue