diff options
author | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-12-22 16:56:24 +0100 |
---|---|---|
committer | Baitinq <manuelpalenzuelamerino@gmail.com> | 2022-12-22 16:56:24 +0100 |
commit | 17e39dc203f5983a17737acd329f6d20968c1778 (patch) | |
tree | 05aba6304f21a58fe5788a5d3b49c9f64dfeee0a | |
parent | Packages: Remove rust utilities (diff) | |
download | nixos-config-17e39dc203f5983a17737acd329f6d20968c1778.tar.gz nixos-config-17e39dc203f5983a17737acd329f6d20968c1778.tar.bz2 nixos-config-17e39dc203f5983a17737acd329f6d20968c1778.zip |
Hardware: Thinkpad: Packages: Add nvramtool and flashrom
Diffstat (limited to '')
-rw-r--r-- | hardware/thinkpad/default.nix | 7 |
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 + ]; } |