diff options
Diffstat (limited to 'modules/hardware')
| -rw-r--r-- | modules/hardware/cpu.nix | 6 | ||||
| -rw-r--r-- | modules/hardware/yubikey.nix | 5 |
2 files changed, 2 insertions, 9 deletions
diff --git a/modules/hardware/cpu.nix b/modules/hardware/cpu.nix index b57190a..3bbeee7 100644 --- a/modules/hardware/cpu.nix +++ b/modules/hardware/cpu.nix @@ -1,8 +1,4 @@ -{ - pkgs, - config, - ... -}: +{ pkgs, config, ... }: { hardware.cpu.amd.updateMicrocode = true; environment.systemPackages = [ pkgs.amdctl ]; diff --git a/modules/hardware/yubikey.nix b/modules/hardware/yubikey.nix index 4604480..6bd4a5c 100644 --- a/modules/hardware/yubikey.nix +++ b/modules/hardware/yubikey.nix @@ -1,7 +1,4 @@ -{ - pkgs, - ... -}: +{ pkgs, ... }: { hardware.gpgSmartcards.enable = true; |