diff options
Diffstat (limited to 'common/home')
| -rw-r--r-- | common/home/default.nix | 2 | ||||
| -rw-r--r-- | common/home/programs/git/default.nix | 8 | ||||
| -rw-r--r-- | common/home/programs/nixvim/plugins/nvim-tree.nix | 10 | ||||
| -rw-r--r-- | common/home/programs/ssh/default.nix | 5 |
4 files changed, 16 insertions, 9 deletions
diff --git a/common/home/default.nix b/common/home/default.nix index c7692d2..4faf3d0 100644 --- a/common/home/default.nix +++ b/common/home/default.nix @@ -159,5 +159,5 @@ packages = [ useGlobalPkgs = true; useUserPackages = true; backupFileExtension = "backup"; - sharedModules = [ nixvim.homeManagerModules.nixvim ]; + sharedModules = [ nixvim.homeModules.nixvim ]; } diff --git a/common/home/programs/git/default.nix b/common/home/programs/git/default.nix index 91878ea..022eb19 100644 --- a/common/home/programs/git/default.nix +++ b/common/home/programs/git/default.nix @@ -1,6 +1,10 @@ { ... }: { enable = true; - userEmail = "nathan@nathanreiner.xyz"; - userName = "Nathan Reiner"; + settings = { + user = { + email = "nathan@nathanreiner.xyz"; + name = "Nathan Reiner"; + }; + }; } diff --git a/common/home/programs/nixvim/plugins/nvim-tree.nix b/common/home/programs/nixvim/plugins/nvim-tree.nix index 16c25de..b48ba9c 100644 --- a/common/home/programs/nixvim/plugins/nvim-tree.nix +++ b/common/home/programs/nixvim/plugins/nvim-tree.nix @@ -1,8 +1,10 @@ { ... }: { - enable = true; - autoClose = false; - disableNetrw = false; - hijackCursor = true; + enable = true; + settings = { + hijack_cursor = true; + disable_netrw = false; + }; + autoClose = false; openOnSetup = true; } diff --git a/common/home/programs/ssh/default.nix b/common/home/programs/ssh/default.nix index da761d5..8613b55 100644 --- a/common/home/programs/ssh/default.nix +++ b/common/home/programs/ssh/default.nix @@ -1,5 +1,6 @@ { home, ... }: { - enable = true; - includes = [ "${home.homeDirectory}/global/.ssh/config" ]; + enable = true; + includes = [ "${home.homeDirectory}/global/.ssh/config" ]; + enableDefaultConfig = false; } |