From d2c0c122319af068d15ca1fc5f6fac154da0f6ca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Leon=20Schwarz=C3=A4ugl?= Date: Wed, 26 Mar 2025 21:48:07 +0100 Subject: [PATCH] feat: enables extra repositories for fw-firmware --- SwarselSystems.org | 6 +++++- hosts/nixos/nbl-imba-2/default.nix | 6 +++++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/SwarselSystems.org b/SwarselSystems.org index 3cc136d..9a382a4 100644 --- a/SwarselSystems.org +++ b/SwarselSystems.org @@ -883,7 +883,11 @@ My work machine. Built for more security, this is the gold standard of my config services = { - fwupd.enable = true; + fwupd = { + enable = true; + # framework also uses lvfs-testing, but I do not want to use it + extraRemotes = [ "lvfs" ]; + }; udev.extraRules = '' # Make Framework 16 Ethernet Module work reliably ACTION=="add", SUBSYSTEM=="usb", ATTR{idVendor}=="0bda", ATTR{idProduct}=="8156", ATTR{power/autosuspend}="20" diff --git a/hosts/nixos/nbl-imba-2/default.nix b/hosts/nixos/nbl-imba-2/default.nix index 4d5862c..4ea6470 100644 --- a/hosts/nixos/nbl-imba-2/default.nix +++ b/hosts/nixos/nbl-imba-2/default.nix @@ -73,7 +73,11 @@ in services = { - fwupd.enable = true; + fwupd = { + enable = true; + # framework also uses lvfs-testing, but I do not want to use it + extraRemotes = [ "lvfs" ]; + }; udev.extraRules = '' # Make Framework 16 Ethernet Module work reliably ACTION=="add", SUBSYSTEM=="usb", ATTR{idVendor}=="0bda", ATTR{idProduct}=="8156", ATTR{power/autosuspend}="20"