nixdots/system/services/fwupd.nix

8 lines
184 B
Nix
Raw Normal View History

2024-04-13 15:59:56 +00:00
{config, ...}: {
# firmware updater for machine hardware
services.fwupd = {
enbale = true;
daemonSettings.EspLocation = config.boot.loader.efi.efiSysMountPoint;
};
}