From c17b068aae06353fda06909038267bea6dd7e78f Mon Sep 17 00:00:00 2001 From: h7x4 Date: Thu, 5 Dec 2024 10:08:52 +0100 Subject: [PATCH] common/fwupd: init --- hosts/common/default.nix | 1 + hosts/common/services/fwupd.nix | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 hosts/common/services/fwupd.nix 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; +}