diff options
author | tdback <tyler@tdback.net> | 2025-02-28 21:09:29 -0500 |
---|---|---|
committer | tdback <tyler@tdback.net> | 2025-02-28 21:09:29 -0500 |
commit | 473665416e1602e9b4a5b8ed71265fab11a6cb56 (patch) | |
tree | a97afd9775c963bd3eda81bd8a944ff73546045b | |
parent | 5abf4178a5f5374598ea7b659fae51c875cd0153 (diff) |
profiles/common: use "default" version of nixpkgs for common programs
-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; }; } |