diff --git a/hosts/common/default.nix b/hosts/common/default.nix index 7e46451..a68b12a 100644 --- a/hosts/common/default.nix +++ b/hosts/common/default.nix @@ -14,6 +14,7 @@ in { ./programs/wireshark.nix ./services/dbus.nix + ./services/fwupd.nix ./services/irqbalance.nix ./services/journald.nix ./services/libinput.nix diff --git a/hosts/common/services/fwupd.nix b/hosts/common/services/fwupd.nix new file mode 100644 index 0000000..209318a --- /dev/null +++ b/hosts/common/services/fwupd.nix @@ -0,0 +1,4 @@ +{ ... }: +{ + services.fwupd.enable = true; +}