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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

34 lines
692 B
Nix
Raw Normal View History

2019-02-19 13:56:42 +00:00
{
config,
lib,
pkgs,
...
}:
let
cfg = config.services.hardware.bolt;
in
2019-02-19 13:56:42 +00:00
{
options = {
services.hardware.bolt = {
enable = lib.mkOption {
type = lib.types.bool;
2019-02-19 13:56:42 +00:00
default = false;
description = ''
Whether to enable Bolt, a userspace daemon to enable
security levels for Thunderbolt 3 on GNU/Linux.
Bolt is used by GNOME 3 to handle Thunderbolt settings.
'';
};
package = lib.mkPackageOption pkgs "bolt" { };
2019-02-19 13:56:42 +00:00
};
};
config = lib.mkIf cfg.enable {
environment.systemPackages = [ cfg.package ];
services.udev.packages = [ cfg.package ];
systemd.packages = [ cfg.package ];
2019-02-19 13:56:42 +00:00
};
}