9 lines
130 B
Nix
9 lines
130 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
config = lib.mkIf config.local.profiles.desktop.enable {
|
|
services.fwupd.enable = true;
|
|
};
|
|
}
|