flocon/modules/nix/core/hardware/fwupd.nix

9 lines
130 B
Nix

{
lib,
config,
...
}: {
config = lib.mkIf config.local.profiles.desktop.enable {
services.fwupd.enable = true;
};
}