diff --git a/homeManagerModules/home.nix b/home.nix similarity index 69% rename from homeManagerModules/home.nix rename to home.nix index 5e340c0..3ff625f 100644 --- a/homeManagerModules/home.nix +++ b/home.nix @@ -9,8 +9,13 @@ let homePath = "/srv/panoptes"; in { - imports = [ ./git.nix ]; - programs.git.extraConfig.safe.directory = "${homePath}"; + programs.git = { + enable = true; + extraConfig.credential.helper = "store --file ~/.git-credentials"; + userName = "John Lancaster"; + userEmail = "32917998+jsl12@users.noreply.github.com"; + extraConfig.safe.directory = "${homePath}"; + }; nixpkgs.config.allowUnfree = true; diff --git a/homeManagerModules/git.nix b/homeManagerModules/git.nix deleted file mode 100644 index d30ba88..0000000 --- a/homeManagerModules/git.nix +++ /dev/null @@ -1,9 +0,0 @@ -{ ... }: -{ - programs.git = { - enable = true; - extraConfig.credential.helper = "store --file ~/.git-credentials"; - userName = "John Lancaster"; - userEmail = "32917998+jsl12@users.noreply.github.com"; - }; -} \ No newline at end of file