aboutsummaryrefslogtreecommitdiff
path: root/modules/profiles
diff options
context:
space:
mode:
authortdback <tyler@tdback.net>2025-02-22 19:29:40 -0500
committertdback <tyler@tdback.net>2025-02-22 19:29:40 -0500
commitb736a0d5d05674f3f43476924b68f97597aeabe7 (patch)
tree68508b1f31b5648bccdeed2cb5282b726626e47c /modules/profiles
parent5abf4178a5f5374598ea7b659fae51c875cd0153 (diff)
profiles/common: include minimal packages by defaultHEADmain
Diffstat (limited to 'modules/profiles')
-rw-r--r--modules/profiles/common/default.nix15
1 files changed, 5 insertions, 10 deletions
diff --git a/modules/profiles/common/default.nix b/modules/profiles/common/default.nix
index 678717a..8152a4f 100644
--- a/modules/profiles/common/default.nix
+++ b/modules/profiles/common/default.nix
@@ -97,14 +97,9 @@
};
boot.kernelModules = [ "tcp_bbr" ];
- 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;
- };
+ # Packages to install on every system.
+ environment.systemPackages = with pkgs; [
+ git
+ htop
+ ];
}