diff options
author | Franck Cuny <franck@fcuny.net> | 2022-02-08 16:32:56 -0800 |
---|---|---|
committer | Franck Cuny <franck@fcuny.net> | 2022-02-08 16:32:56 -0800 |
commit | 7376c608950648a65af8001b856a3dbf51d82023 (patch) | |
tree | 6665bc4710bae4020441211aacc43d62bb571b8d /modules | |
parent | home-manager: typo in my config (diff) | |
download | world-7376c608950648a65af8001b856a3dbf51d82023.tar.gz |
systems: install more packages
Diffstat (limited to 'modules')
-rw-r--r-- | modules/systems/default.nix | 3 | ||||
-rw-r--r-- | modules/systems/software.nix | 22 |
2 files changed, 24 insertions, 1 deletions
diff --git a/modules/systems/default.nix b/modules/systems/default.nix index eacf54e..3cbe456 100644 --- a/modules/systems/default.nix +++ b/modules/systems/default.nix @@ -1,5 +1,6 @@ { imports = [ - ./nix.nix + ./nix.nix + ./software.nix ]; } diff --git a/modules/systems/software.nix b/modules/systems/software.nix new file mode 100644 index 0000000..59b6477 --- /dev/null +++ b/modules/systems/software.nix @@ -0,0 +1,22 @@ +{pkgs, config, lib, ...}: + +{ + environment.systemPackages = with pkgs; [ + curl + git + htop + hwdata + iftop + iptraf-ng + lm_sensors + mg + parted + parted + pciutils + rsync + strace + tcpdump + tmux + unzip + ] +} |