grafana-alloy: don't build the frontend twice
[NixPkgs.git] / nixos / modules / programs / i3lock.nix
blobff616144e283480bd07d776292ea7c57c9a3fec1
1 { config, lib, pkgs, ... }:
3 let
5   cfg = config.programs.i3lock;
7 in {
9   ###### interface
11   options = {
12     programs.i3lock = {
13       enable = lib.mkEnableOption "i3lock";
14       package = lib.mkPackageOption pkgs "i3lock" {
15         example = "i3lock-color";
16         extraDescription = ''
17           ::: {.note}
18           The i3lock package must include a i3lock file or link in its out directory in order for the u2fSupport option to work correctly.
19           :::
20         '';
21       };
22       u2fSupport = lib.mkOption {
23         type        = lib.types.bool;
24         default     = false;
25         example     = true;
26         description = ''
27           Whether to enable U2F support in the i3lock program.
28           U2F enables authentication using a hardware device, such as a security key.
29           When U2F support is enabled, the i3lock program will set the setuid bit on the i3lock binary and enable the pam u2fAuth service,
30         '';
31       };
32     };
33   };
35   ###### implementation
37   config = lib.mkIf cfg.enable {
39     environment.systemPackages = [ cfg.package ];
41     security.wrappers.i3lock = lib.mkIf cfg.u2fSupport {
42       setuid = true;
43       owner = "root";
44       group = "root";
45       source = "${cfg.package.out}/bin/i3lock";
46     };
48     security.pam.services.i3lock.u2fAuth = cfg.u2fSupport;
50   };