nix-files/hosts/common/programs/fwupd.nix
2024-02-28 13:35:09 +00:00

9 lines
213 B
Nix

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