diff options
Diffstat (limited to '')
-rw-r--r-- | modules/system/packages/default.nix (renamed from hosts/common/system/software.nix) | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/hosts/common/system/software.nix b/modules/system/packages/default.nix index e872679..49d7920 100644 --- a/hosts/common/system/software.nix +++ b/modules/system/packages/default.nix @@ -1,9 +1,12 @@ -{ pkgs, config, lib, ... }: - +# Common packages +{ config, lib, pkgs, ... }: with lib; - let linuxpkgs = config.boot.kernelPackages; in { + + # It's always useful to have bash around + environment.shells = with pkgs; [ bashInteractive ]; + environment.systemPackages = with pkgs; [ binutils cacert @@ -40,7 +43,6 @@ in { vim wget wireguard - zsh ]; programs.bcc.enable = true; |