mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 07:23:20 +00:00
bd56368848
most of these are hidden because they're either part of a submodule that doesn't have its type rendered (eg because the submodule type is used in an either type) or because they are explicitly hidden. some of them are merely hidden from nix-doc-munge by how their option is put together.
142 lines
4.7 KiB
Nix
142 lines
4.7 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
cfg = config.services.xserver.xautolock;
|
|
in
|
|
{
|
|
options = {
|
|
services.xserver.xautolock = {
|
|
enable = mkEnableOption (lib.mdDoc "xautolock");
|
|
enableNotifier = mkEnableOption (lib.mdDoc "xautolock.notify") // {
|
|
description = lib.mdDoc ''
|
|
Whether to enable the notifier feature of xautolock.
|
|
This publishes a notification before the autolock.
|
|
'';
|
|
};
|
|
|
|
time = mkOption {
|
|
default = 15;
|
|
type = types.int;
|
|
|
|
description = lib.mdDoc ''
|
|
Idle time (in minutes) to wait until xautolock locks the computer.
|
|
'';
|
|
};
|
|
|
|
locker = mkOption {
|
|
default = "${pkgs.xlockmore}/bin/xlock"; # default according to `man xautolock`
|
|
defaultText = literalExpression ''"''${pkgs.xlockmore}/bin/xlock"'';
|
|
example = literalExpression ''"''${pkgs.i3lock}/bin/i3lock -i /path/to/img"'';
|
|
type = types.str;
|
|
|
|
description = lib.mdDoc ''
|
|
The script to use when automatically locking the computer.
|
|
'';
|
|
};
|
|
|
|
nowlocker = mkOption {
|
|
default = null;
|
|
example = literalExpression ''"''${pkgs.i3lock}/bin/i3lock -i /path/to/img"'';
|
|
type = types.nullOr types.str;
|
|
|
|
description = lib.mdDoc ''
|
|
The script to use when manually locking the computer with {command}`xautolock -locknow`.
|
|
'';
|
|
};
|
|
|
|
notify = mkOption {
|
|
default = 10;
|
|
type = types.int;
|
|
|
|
description = lib.mdDoc ''
|
|
Time (in seconds) before the actual lock when the notification about the pending lock should be published.
|
|
'';
|
|
};
|
|
|
|
notifier = mkOption {
|
|
default = null;
|
|
example = literalExpression ''"''${pkgs.libnotify}/bin/notify-send 'Locking in 10 seconds'"'';
|
|
type = types.nullOr types.str;
|
|
|
|
description = lib.mdDoc ''
|
|
Notification script to be used to warn about the pending autolock.
|
|
'';
|
|
};
|
|
|
|
killer = mkOption {
|
|
default = null; # default according to `man xautolock` is none
|
|
example = "/run/current-system/systemd/bin/systemctl suspend";
|
|
type = types.nullOr types.str;
|
|
|
|
description = lib.mdDoc ''
|
|
The script to use when nothing has happend for as long as {option}`killtime`
|
|
'';
|
|
};
|
|
|
|
killtime = mkOption {
|
|
default = 20; # default according to `man xautolock`
|
|
type = types.int;
|
|
|
|
description = lib.mdDoc ''
|
|
Minutes xautolock waits until it executes the script specified in {option}`killer`
|
|
(Has to be at least 10 minutes)
|
|
'';
|
|
};
|
|
|
|
extraOptions = mkOption {
|
|
type = types.listOf types.str;
|
|
default = [ ];
|
|
example = [ "-detectsleep" ];
|
|
description = lib.mdDoc ''
|
|
Additional command-line arguments to pass to
|
|
{command}`xautolock`.
|
|
'';
|
|
};
|
|
};
|
|
};
|
|
|
|
config = mkIf cfg.enable {
|
|
environment.systemPackages = with pkgs; [ xautolock ];
|
|
systemd.user.services.xautolock = {
|
|
description = "xautolock service";
|
|
wantedBy = [ "graphical-session.target" ];
|
|
partOf = [ "graphical-session.target" ];
|
|
serviceConfig = with lib; {
|
|
ExecStart = strings.concatStringsSep " " ([
|
|
"${pkgs.xautolock}/bin/xautolock"
|
|
"-noclose"
|
|
"-time ${toString cfg.time}"
|
|
"-locker '${cfg.locker}'"
|
|
] ++ optionals cfg.enableNotifier [
|
|
"-notify ${toString cfg.notify}"
|
|
"-notifier '${cfg.notifier}'"
|
|
] ++ optionals (cfg.nowlocker != null) [
|
|
"-nowlocker '${cfg.nowlocker}'"
|
|
] ++ optionals (cfg.killer != null) [
|
|
"-killer '${cfg.killer}'"
|
|
"-killtime ${toString cfg.killtime}"
|
|
] ++ cfg.extraOptions);
|
|
Restart = "always";
|
|
};
|
|
};
|
|
assertions = [
|
|
{
|
|
assertion = cfg.enableNotifier -> cfg.notifier != null;
|
|
message = "When enabling the notifier for xautolock, you also need to specify the notify script";
|
|
}
|
|
{
|
|
assertion = cfg.killer != null -> cfg.killtime >= 10;
|
|
message = "killtime has to be at least 10 minutes according to `man xautolock`";
|
|
}
|
|
] ++ (lib.forEach [ "locker" "notifier" "nowlocker" "killer" ]
|
|
(option:
|
|
{
|
|
assertion = cfg.${option} != null -> builtins.substring 0 1 cfg.${option} == "/";
|
|
message = "Please specify a canonical path for `services.xserver.xautolock.${option}`";
|
|
})
|
|
);
|
|
};
|
|
}
|