nixdots/system/shared/services/fwupd.nix

8 lines
184 B
Nix

{config, ...}: {
# firmware updater for machine hardware
services.fwupd = {
enable = true;
daemonSettings.EspLocation = config.boot.loader.efi.efiSysMountPoint;
};
}