From b736a0d5d05674f3f43476924b68f97597aeabe7 Mon Sep 17 00:00:00 2001 From: tdback Date: Sat, 22 Feb 2025 19:29:40 -0500 Subject: profiles/common: include minimal packages by default --- modules/profiles/common/default.nix | 15 +++++---------- 1 file changed, 5 insertions(+), 10 deletions(-) (limited to 'modules/profiles') 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 + ]; } -- cgit v1.2.3