nix-files/hosts/common/programs/fwupd.nix

8 lines
185 B
Nix

{ config, lib, ... }:
{
services.fwupd = lib.mkIf config.sane.programs.fwupd.enabled {
# enables the dbus service, which i think the frontend speaks to.
enable = true;
};
}