diff --git a/hosts/randolph/home.nix b/hosts/randolph/home.nix index ac7de7c..7ba7b8b 100644 --- a/hosts/randolph/home.nix +++ b/hosts/randolph/home.nix @@ -12,6 +12,7 @@ in { ../../programs/zsh.nix ../../programs/taskwarrior.nix ../../programs/clifm.nix + ../../programs/git.nix ]; home.username = "alice"; home.homeDirectory = "/home/alice"; @@ -124,15 +125,15 @@ in { programs.home-manager.enable = true; - programs.git = { - enable = true; - userName = "vorboyvo"; - userEmail = "mrsirofvibe@outlook.com"; - extraConfig = { - init.defaultBranch = "main"; - core.editor = "kak"; - }; - }; + # programs.git = { + # enable = true; + # userName = "vorboyvo"; + # userEmail = "mrsirofvibe@outlook.com"; + # extraConfig = { + # init.defaultBranch = "main"; + # core.editor = "kak"; + # }; + # }; wayland.windowManager.sway = import ../../programs/sway.nix { inherit scripts extra config lib pkgs terminal; diff --git a/programs/git.nix b/programs/git.nix new file mode 100644 index 0000000..ad3e74e --- /dev/null +++ b/programs/git.nix @@ -0,0 +1,13 @@ +{...}: { + + programs.git = { + enable = true; + userName = "vorboyvo"; + userEmail = "mrsirofvibe@outlook.com"; + extraConfig = { + init.defaultBranch = "main"; + core.editor = "kak"; + }; + }; + +}