From babf4c5fc4ed59051dc7f916681f61011118c154 Mon Sep 17 00:00:00 2001 From: rocketcamel Date: Tue, 21 Jan 2025 17:56:52 -0800 Subject: [PATCH] fix: merge commonPackages with tux config --- nix/hosts/tux/configuration.nix | 25 +++++++++++++------------ 1 file changed, 13 insertions(+), 12 deletions(-) diff --git a/nix/hosts/tux/configuration.nix b/nix/hosts/tux/configuration.nix index 0f2b1ef..6b1e840 100644 --- a/nix/hosts/tux/configuration.nix +++ b/nix/hosts/tux/configuration.nix @@ -100,18 +100,19 @@ # List packages installed in system profile. To search, run: # $ nix search wget - environment.systemPackages = with pkgs; [ - # vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. - wget - curl - ripgrep - git - neovim - busybox - dolphin - wireguard-tools - gh - ]; + environment.systemPackages = with pkgs; + config.commonPackages ++ [ + # vim # Do not forget to add an editor to edit configuration.nix! The Nano editor is also installed by default. + wget + curl + ripgrep + git + neovim + busybox + dolphin + wireguard-tools + gh + ]; # Some programs need SUID wrappers, can be configured further or are # started in user sessions.