diff --git a/nixos/ryu/services/default.nix b/nixos/ryu/services/default.nix index a2163ed5..350040f4 100644 --- a/nixos/ryu/services/default.nix +++ b/nixos/ryu/services/default.nix @@ -12,6 +12,7 @@ ./command-runner.nix ./resolved.nix ./minecraft.nix + ./fwupd.nix ]; services = { # hardware.openrgb.enable = true; diff --git a/nixos/ryu/services/fwupd.nix b/nixos/ryu/services/fwupd.nix new file mode 100644 index 00000000..75918b01 --- /dev/null +++ b/nixos/ryu/services/fwupd.nix @@ -0,0 +1,5 @@ +{...}: { + services.fwupd = { + enable = true; + }; +}