diff options
Diffstat (limited to '')
-rw-r--r-- | hosts/common/system/default.nix | 1 | ||||
-rw-r--r-- | hosts/common/system/hardware.nix | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/hosts/common/system/default.nix b/hosts/common/system/default.nix index 64cb51b..8e7def5 100644 --- a/hosts/common/system/default.nix +++ b/hosts/common/system/default.nix @@ -3,6 +3,7 @@ { imports = [ ./boot.nix + ./hardware.nix ./motd.nix ./network.nix ./nix.nix diff --git a/hosts/common/system/hardware.nix b/hosts/common/system/hardware.nix new file mode 100644 index 0000000..030b358 --- /dev/null +++ b/hosts/common/system/hardware.nix @@ -0,0 +1,5 @@ +{ pkgs, lib, config, ... }: + +{ + services.fwupd.enable = true; +} |