nixdots/system/shared/services/fwupd.nix

8 lines
184 B
Nix
Raw Normal View History

2024-04-13 17:59:56 +02:00
{config, ...}: {
# firmware updater for machine hardware
services.fwupd = {
2024-04-13 18:10:14 +02:00
enable = true;
2024-04-13 17:59:56 +02:00
daemonSettings.EspLocation = config.boot.loader.efi.efiSysMountPoint;
};
}