mirror of
https://github.com/ItsDrike/nixdots
synced 2024-11-10 04:59:42 +00:00
8 lines
180 B
Nix
8 lines
180 B
Nix
{config, ...}: {
|
|
# firmware updater for machine hardware
|
|
services.fwupd = {
|
|
enable = true;
|
|
daemonSettings.EspLocation = config.boot.loader.efi.efiSysMountPoint;
|
|
};
|
|
}
|