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

10 lines
130 B
Nix
Raw Normal View History

2025-01-14 11:34:01 +00:00
{
lib,
config,
...
}: {
config = lib.mkIf config.local.profiles.desktop.enable {
services.fwupd.enable = true;
};
}