# fwupd daemon. { config, lib, pkgs, ... }: with lib; let cfg = config.services.fwupd; customEtc = { "fwupd/daemon.conf" = { source = pkgs.writeText "daemon.conf" '' [fwupd] BlacklistDevices=${lib.concatStringsSep ";" cfg.blacklistDevices} BlacklistPlugins=${lib.concatStringsSep ";" cfg.blacklistPlugins} ''; }; "fwupd/uefi.conf" = { source = pkgs.writeText "uefi.conf" '' [uefi] OverrideESPMountPoint=${config.boot.loader.efi.efiSysMountPoint} ''; }; }; originalEtc = let mkEtcFile = n: nameValuePair n { source = "${cfg.package}/etc/${n}"; }; in listToAttrs (map mkEtcFile cfg.package.filesInstalledToEtc); extraTrustedKeys = let mkName = p: "pki/fwupd/${baseNameOf (toString p)}"; mkEtcFile = p: nameValuePair (mkName p) { source = p; }; in listToAttrs (map mkEtcFile cfg.extraTrustedKeys); # We cannot include the file in $out and rely on filesInstalledToEtc # to install it because it would create a cyclic dependency between # the outputs. We also need to enable the remote, # which should not be done by default. testRemote = if cfg.enableTestRemote then { "fwupd/remotes.d/fwupd-tests.conf" = { source = pkgs.runCommand "fwupd-tests-enabled.conf" {} '' sed "s,^Enabled=false,Enabled=true," \ "${cfg.package.installedTests}/etc/fwupd/remotes.d/fwupd-tests.conf" > "$out" ''; }; } else {}; in { ###### interface options = { services.fwupd = { enable = mkOption { type = types.bool; default = false; description = '' Whether to enable fwupd, a DBus service that allows applications to update firmware. ''; }; blacklistDevices = mkOption { type = types.listOf types.str; default = []; example = [ "2082b5e0-7a64-478a-b1b2-e3404fab6dad" ]; description = '' Allow blacklisting specific devices by their GUID ''; }; blacklistPlugins = mkOption { type = types.listOf types.str; default = []; example = [ "udev" ]; description = '' Allow blacklisting specific plugins ''; }; extraTrustedKeys = mkOption { type = types.listOf types.path; default = []; example = literalExample "[ /etc/nixos/fwupd/myfirmware.pem ]"; description = '' Installing a public key allows firmware signed with a matching private key to be recognized as trusted, which may require less authentication to install than for untrusted files. By default trusted firmware can be upgraded (but not downgraded) without the user or administrator password. Only very few keys are installed by default. ''; }; enableTestRemote = mkOption { type = types.bool; default = false; description = '' Whether to enable test remote. This is used by installed tests. ''; }; package = mkOption { type = types.package; default = pkgs.fwupd; description = '' Which fwupd package to use. ''; }; }; }; ###### implementation config = mkIf cfg.enable { # Disable test related plug-ins implicitly so that users do not have to care about them. services.fwupd.blacklistPlugins = cfg.package.defaultBlacklistedPlugins; environment.systemPackages = [ cfg.package ]; # customEtc overrides some files from the package environment.etc = originalEtc // customEtc // extraTrustedKeys // testRemote; services.dbus.packages = [ cfg.package ]; services.udev.packages = [ cfg.package ]; systemd.packages = [ cfg.package ]; }; meta = { maintainers = pkgs.fwupd.meta.maintainers; }; }