From 4926e773c86cb5a1913f7fa8399951bd83cbd0ed Mon Sep 17 00:00:00 2001 From: Mark Nipper Date: Tue, 20 May 2025 13:12:20 -0700 Subject: Update environment.systemPackages syntax --- hosts/common/core/shells.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) (limited to 'hosts') diff --git a/hosts/common/core/shells.nix b/hosts/common/core/shells.nix index 0469b8c..f02ec63 100644 --- a/hosts/common/core/shells.nix +++ b/hosts/common/core/shells.nix @@ -1,8 +1,7 @@ { pkgs, ... }: { - environment.systemPackages = builtins.attrValues { - inherit (pkgs) - bash - zsh; - }; + environment.systemPackages = [ + pkgs.bash + pkgs.zsh + ]; } -- cgit v1.2.3