nixpkgs/nixos/modules/services/hardware/fwupd.nix

134 lines
4.1 KiB
Nix
Raw Normal View History

2017-10-09 13:35:52 +00:00
# fwupd daemon.
{ config, lib, pkgs, ... }:
with lib;
let
cfg = config.services.fwupd;
customEtc = {
"fwupd/daemon.conf" = {
source = pkgs.writeText "daemon.conf" ''
[fwupd]
DisabledDevices=${lib.concatStringsSep ";" cfg.disabledDevices}
DisabledPlugins=${lib.concatStringsSep ";" cfg.disabledPlugins}
'';
};
"fwupd/uefi.conf" = {
source = pkgs.writeText "uefi.conf" ''
[uefi]
OverrideESPMountPoint=${config.boot.loader.efi.efiSysMountPoint}
'';
};
};
2017-10-09 13:35:52 +00:00
originalEtc =
let
2019-08-29 15:22:24 +00:00
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);
2019-01-27 23:15:00 +00:00
# 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," \
2019-08-29 15:22:24 +00:00
"${cfg.package.installedTests}/etc/fwupd/remotes.d/fwupd-tests.conf" > "$out"
2019-01-27 23:15:00 +00:00
'';
};
} else {};
2017-10-09 13:35:52 +00:00
in {
###### interface
options = {
services.fwupd = {
enable = mkOption {
type = types.bool;
default = false;
2017-10-09 13:35:52 +00:00
description = ''
Whether to enable fwupd, a DBus service that allows
applications to update firmware.
'';
};
disabledDevices = mkOption {
type = types.listOf types.str;
2017-10-09 13:35:52 +00:00
default = [];
example = [ "2082b5e0-7a64-478a-b1b2-e3404fab6dad" ];
description = ''
Allow disabling specific devices by their GUID
2017-10-09 13:35:52 +00:00
'';
};
disabledPlugins = mkOption {
type = types.listOf types.str;
default = [];
2017-10-09 13:35:52 +00:00
example = [ "udev" ];
description = ''
Allow disabling specific plugins
2017-10-09 13:35:52 +00:00
'';
};
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.
'';
};
2019-01-27 23:15:00 +00:00
enableTestRemote = mkOption {
type = types.bool;
default = false;
description = ''
Whether to enable test remote. This is used by
<link xlink:href="https://github.com/fwupd/fwupd/blob/master/data/installed-tests/README.md">installed tests</link>.
2019-01-27 23:15:00 +00:00
'';
};
2019-08-29 15:22:24 +00:00
package = mkOption {
type = types.package;
default = pkgs.fwupd;
description = ''
Which fwupd package to use.
'';
};
2017-10-09 13:35:52 +00:00
};
};
imports = [
(mkRenamedOptionModule [ "services" "fwupd" "blacklistDevices"] [ "services" "fwupd" "disabledDevices" ])
(mkRenamedOptionModule [ "services" "fwupd" "blacklistPlugins"] [ "services" "fwupd" "disabledPlugins" ])
];
2017-10-09 13:35:52 +00:00
###### implementation
config = mkIf cfg.enable {
# Disable test related plug-ins implicitly so that users do not have to care about them.
services.fwupd.disabledPlugins = cfg.package.defaultDisabledPlugins;
2019-08-29 15:22:24 +00:00
environment.systemPackages = [ cfg.package ];
2017-10-09 13:35:52 +00:00
# customEtc overrides some files from the package
environment.etc = originalEtc // customEtc // extraTrustedKeys // testRemote;
2017-10-09 13:35:52 +00:00
2019-08-29 15:22:24 +00:00
services.dbus.packages = [ cfg.package ];
2017-10-09 13:35:52 +00:00
2019-08-29 15:22:24 +00:00
services.udev.packages = [ cfg.package ];
2017-10-09 13:35:52 +00:00
2019-08-29 15:22:24 +00:00
systemd.packages = [ cfg.package ];
2017-10-09 13:35:52 +00:00
};
2018-02-14 01:10:12 +00:00
meta = {
2018-06-30 13:49:44 +00:00
maintainers = pkgs.fwupd.meta.maintainers;
2018-02-14 01:10:12 +00:00
};
2017-10-09 13:35:52 +00:00
}