nixdots/system/shared/services/fwupd.nix

8 lines
180 B
Nix
Raw Permalink 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-07-26 23:07:07 +00:00
daemonSettings.EspLocation = config.boot.loader.efi.efiSysMountPoint;
2024-04-13 15:59:56 +00:00
};
}