2021-09-06 03:00:28 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
let cfg = config.services.betterlockscreen;
|
|
|
|
|
|
|
|
in {
|
|
|
|
meta.maintainers = with maintainers; [ sebtm ];
|
|
|
|
|
|
|
|
options = {
|
|
|
|
services.betterlockscreen = {
|
2023-07-02 01:45:18 +02:00
|
|
|
enable = mkEnableOption "betterlockscreen, a screen-locker module";
|
2021-09-06 03:00:28 +02:00
|
|
|
|
|
|
|
package = mkOption {
|
|
|
|
type = types.package;
|
|
|
|
default = pkgs.betterlockscreen;
|
2021-10-09 11:14:08 +02:00
|
|
|
defaultText = literalExpression "pkgs.betterlockscreen";
|
2023-07-02 01:45:18 +02:00
|
|
|
description = "Package providing {command}`betterlockscreen`.";
|
2021-09-06 03:00:28 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
arguments = mkOption {
|
|
|
|
type = types.listOf types.str;
|
|
|
|
default = [ ];
|
2023-07-02 01:45:18 +02:00
|
|
|
description =
|
2023-07-01 01:30:13 +02:00
|
|
|
"List of arguments appended to `./betterlockscreen --lock [args]`";
|
2021-09-06 03:00:28 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
inactiveInterval = mkOption {
|
|
|
|
type = types.int;
|
|
|
|
default = 10;
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2023-07-01 01:30:13 +02:00
|
|
|
Value used for {option}`services.screen-locker.inactiveInterval`.
|
2021-09-06 03:00:28 +02:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf cfg.enable {
|
2021-09-07 07:55:17 +02:00
|
|
|
assertions = [
|
|
|
|
(lib.hm.assertions.assertPlatform "services.betterlockscreen" pkgs
|
|
|
|
lib.platforms.linux)
|
|
|
|
];
|
|
|
|
|
2021-09-06 03:00:28 +02:00
|
|
|
home.packages = [ cfg.package ];
|
|
|
|
|
|
|
|
services.screen-locker = {
|
|
|
|
enable = true;
|
|
|
|
inactiveInterval = cfg.inactiveInterval;
|
|
|
|
lockCmd = "${cfg.package}/bin/betterlockscreen --lock ${
|
|
|
|
concatStringsSep " " cfg.arguments
|
|
|
|
}";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|