nixdots/system/shared/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 = {
2024-04-13 16:10:14 +00:00
enable = true;
2024-04-13 15:59:56 +00:00
daemonSettings.EspLocation = config.boot.loader.efi.efiSysMountPoint;
};
}