about summary refs log tree commit diff
diff options
context:
space:
mode:
authorBaitinq <manuelpalenzuelamerino@gmail.com>2022-12-22 16:56:24 +0100
committerBaitinq <manuelpalenzuelamerino@gmail.com>2022-12-22 16:56:24 +0100
commit17e39dc203f5983a17737acd329f6d20968c1778 (patch)
tree05aba6304f21a58fe5788a5d3b49c9f64dfeee0a
parentPackages: Remove rust utilities (diff)
downloadnixos-config-17e39dc203f5983a17737acd329f6d20968c1778.tar.gz
nixos-config-17e39dc203f5983a17737acd329f6d20968c1778.tar.bz2
nixos-config-17e39dc203f5983a17737acd329f6d20968c1778.zip
Hardware: Thinkpad: Packages: Add nvramtool and flashrom
-rw-r--r--hardware/thinkpad/default.nix7
1 files changed, 6 insertions, 1 deletions
diff --git a/hardware/thinkpad/default.nix b/hardware/thinkpad/default.nix
index b0125ee..7236711 100644
--- a/hardware/thinkpad/default.nix
+++ b/hardware/thinkpad/default.nix
@@ -1,4 +1,9 @@
-{ ... }:
+{ pkgs, ... }:
 {
   imports = [ ./hardware.nix ];
+
+  environment.systemPackages = with pkgs; [
+    flashrom
+    nvramtool
+  ];
 }