about summary refs log tree commit diff
path: root/modules/server
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2020-04-07 10:29:06 +0000
committerAlyssa Ross <hi@alyssa.is>2020-04-07 10:29:06 +0000
commit07b89de1d47b56688028dff995bda9e118c97f2d (patch)
treee2e1ac8d4cb1b8cd23bab79891ce23763233da12 /modules/server
parent2b2b105b607695a7798608ca02ae9463eea482d5 (diff)
downloadnixlib-07b89de1d47b56688028dff995bda9e118c97f2d.tar
nixlib-07b89de1d47b56688028dff995bda9e118c97f2d.tar.gz
nixlib-07b89de1d47b56688028dff995bda9e118c97f2d.tar.bz2
nixlib-07b89de1d47b56688028dff995bda9e118c97f2d.tar.lz
nixlib-07b89de1d47b56688028dff995bda9e118c97f2d.tar.xz
nixlib-07b89de1d47b56688028dff995bda9e118c97f2d.tar.zst
nixlib-07b89de1d47b56688028dff995bda9e118c97f2d.zip
modules/server: globally install some utilities
These are useful for troubleshooting, and often the time I need them
is exactly the time when I'm no longer able to install them.
Diffstat (limited to 'modules/server')
-rw-r--r--modules/server/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/server/default.nix b/modules/server/default.nix
index ffda6267c4c3..093691f32f26 100644
--- a/modules/server/default.nix
+++ b/modules/server/default.nix
@@ -1,4 +1,4 @@
-{ ... }:
+{ pkgs, ... }:
 
 {
   imports = [ ../nix ../ssh ../users ];
@@ -7,4 +7,6 @@
   security.sudo.wheelNeedsPassword = false;
 
   i18n.defaultLocale = "C.utf8";
+
+  environment.systemPackages = with pkgs; [ htop ncdu ];
 }