nixdots/system/shared/services/fwupd.nix
2024-07-27 01:07:07 +02:00

8 lines
180 B
Nix

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