about summary refs log tree commit diff
path: root/modules/workstation/hardware
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2020-04-26 18:41:23 +0000
committerAlyssa Ross <hi@alyssa.is>2020-04-26 18:41:23 +0000
commit5b00523fb58512232b819a301c4309f579c7f09c (patch)
tree8b1baa1cc2f59b7b027552e0bbe4960017de64a4 /modules/workstation/hardware
parent96d97dadfaa650cf4c937f64d0ff37f25dba5f34 (diff)
downloadnixlib-5b00523fb58512232b819a301c4309f579c7f09c.tar
nixlib-5b00523fb58512232b819a301c4309f579c7f09c.tar.gz
nixlib-5b00523fb58512232b819a301c4309f579c7f09c.tar.bz2
nixlib-5b00523fb58512232b819a301c4309f579c7f09c.tar.lz
nixlib-5b00523fb58512232b819a301c4309f579c7f09c.tar.xz
nixlib-5b00523fb58512232b819a301c4309f579c7f09c.tar.zst
nixlib-5b00523fb58512232b819a301c4309f579c7f09c.zip
modules/hardware: install ddrescue
Diffstat (limited to 'modules/workstation/hardware')
-rw-r--r--modules/workstation/hardware/default.nix4
1 files changed, 3 insertions, 1 deletions
diff --git a/modules/workstation/hardware/default.nix b/modules/workstation/hardware/default.nix
index dfb9d6c1b7c5..3c33ee2b4a1b 100644
--- a/modules/workstation/hardware/default.nix
+++ b/modules/workstation/hardware/default.nix
@@ -1,7 +1,9 @@
-{ ... }:
+{ pkgs, ... }:
 
 {
   imports = [ ./keyboard ./yubikey ];
 
+  environment.systemPackages = with pkgs; [ ddrescue ];
+
   sound.enable = true;
 }