diff options
-rw-r--r-- | hardware/chromebook/hardware.nix | 4 | ||||
-rw-r--r-- | hosts/luna/default.nix | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/hardware/chromebook/hardware.nix b/hardware/chromebook/hardware.nix index 945023a..6af088e 100644 --- a/hardware/chromebook/hardware.nix +++ b/hardware/chromebook/hardware.nix @@ -52,4 +52,8 @@ in }; }; + environment.systemPackages = with pkgs; [ + dmidecode #needed for updating coreboot bios + xf86_input_cmt #chromebook touchpad drivers + ]; } diff --git a/hosts/luna/default.nix b/hosts/luna/default.nix index 0c59e9e..4af2336 100644 --- a/hosts/luna/default.nix +++ b/hosts/luna/default.nix @@ -24,8 +24,6 @@ }; environment.systemPackages = with pkgs; [ - dmidecode #needed for updating coreboot bios - xf86_input_cmt #chromebook touchpad drivers ]; } |