diff options
Diffstat (limited to 'modules/profiles/common/default.nix')
-rw-r--r-- | modules/profiles/common/default.nix | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/modules/profiles/common/default.nix b/modules/profiles/common/default.nix index 678717a..29c74e9 100644 --- a/modules/profiles/common/default.nix +++ b/modules/profiles/common/default.nix @@ -2,7 +2,6 @@ inputs, config, lib, - pkgs, ... }: { @@ -97,14 +96,12 @@ }; boot.kernelModules = [ "tcp_bbr" ]; + # Ensure these programs are *always* installed. programs.git.enable = true; programs.htop.enable = true; - # Ensure we have the latest available neovim by default. programs.neovim = { enable = true; - package = pkgs.unstable.neovim-unwrapped; viAlias = true; vimAlias = true; - defaultEditor = true; }; } |