From a70c1a3654c2b3ba40a1d3f4f0f26b183e4349fb Mon Sep 17 00:00:00 2001 From: jay Date: Thu, 17 Jul 2025 20:52:21 -0400 Subject: [PATCH] Add Framework fwupd. --- nodes/hosts/nixwork/configuration.nix | 1 + nodes/hosts/nixwork/programs/fwupd.nix | 4 ++++ 2 files changed, 5 insertions(+) create mode 100644 nodes/hosts/nixwork/programs/fwupd.nix diff --git a/nodes/hosts/nixwork/configuration.nix b/nodes/hosts/nixwork/configuration.nix index 9ffe568..83d6dbb 100644 --- a/nodes/hosts/nixwork/configuration.nix +++ b/nodes/hosts/nixwork/configuration.nix @@ -9,6 +9,7 @@ [ # Include the results of the hardware scan. ./hardware-configuration.nix inputs.nixos-hardware.nixosModules.framework-16-7040-amd + ./programs/fwupd.nix ./programs/sof-firmware.nix # Not working yet. ./services/fprintd.nix diff --git a/nodes/hosts/nixwork/programs/fwupd.nix b/nodes/hosts/nixwork/programs/fwupd.nix new file mode 100644 index 0000000..d52e512 --- /dev/null +++ b/nodes/hosts/nixwork/programs/fwupd.nix @@ -0,0 +1,4 @@ +{ ... }: { + services.fwupd.enable = true; +} +