From a2e3cc96fbd15ecc68594c313af5d2265537ea4d Mon Sep 17 00:00:00 2001 From: Oliver Davies Date: Thu, 31 Jul 2025 17:10:11 +0100 Subject: [PATCH] Add firmware module --- modules2/firmware.nix | 3 +++ modules2/hosts/t480/imports.nix | 1 + 2 files changed, 4 insertions(+) create mode 100644 modules2/firmware.nix diff --git a/modules2/firmware.nix b/modules2/firmware.nix new file mode 100644 index 00000000..cad66d99 --- /dev/null +++ b/modules2/firmware.nix @@ -0,0 +1,3 @@ +{ + flake.modules.nixos.desktop.services.fwupd.enable = true; +} diff --git a/modules2/hosts/t480/imports.nix b/modules2/hosts/t480/imports.nix index 58d63476..4f400104 100644 --- a/modules2/hosts/t480/imports.nix +++ b/modules2/hosts/t480/imports.nix @@ -2,6 +2,7 @@ { flake.modules.nixos."nixosConfigurations/t480".imports = with config.flake.modules.nixos; [ + desktop pc ]; }