nixos/fwupd: enable udisks2

Without this, you get a warning that fwupd is unable to find the ESP
partition.

c.f. https://github.com/fwupd/fwupd/wiki/PluginFlag:esp-not-found
This commit is contained in:
Bernardo Meurer 2022-08-16 18:15:15 -04:00
parent 0b73b43a94
commit fb5bceb3ff
No known key found for this signature in database
GPG key ID: F4C0D53B8D14C246

View file

@ -125,6 +125,8 @@ in {
services.udev.packages = [ cfg.package ];
services.udisks2.enable = true;
systemd.packages = [ cfg.package ];
};