mirror of
https://github.com/nix-community/home-manager.git
synced 2025-11-27 04:31:02 +01:00
betterlockscreen: add module (#2292)
This commit is contained in:
parent
2952168ed5
commit
5e46262cb1
4 changed files with 61 additions and 0 deletions
50
modules/services/betterlockscreen.nix
Normal file
50
modules/services/betterlockscreen.nix
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
{ config, lib, pkgs, ... }:
|
||||
|
||||
with lib;
|
||||
|
||||
let cfg = config.services.betterlockscreen;
|
||||
|
||||
in {
|
||||
meta.maintainers = with maintainers; [ sebtm ];
|
||||
|
||||
options = {
|
||||
services.betterlockscreen = {
|
||||
enable = mkEnableOption "betterlockscreen, a screen-locker module";
|
||||
|
||||
package = mkOption {
|
||||
type = types.package;
|
||||
default = pkgs.betterlockscreen;
|
||||
defaultText = literalExample "pkgs.betterlockscreen";
|
||||
description = "Package providing <command>betterlockscreen</command>.";
|
||||
};
|
||||
|
||||
arguments = mkOption {
|
||||
type = types.listOf types.str;
|
||||
default = [ ];
|
||||
description =
|
||||
"List of arguments appended to <literal>./betterlockscreen --lock [args]</literal>";
|
||||
};
|
||||
|
||||
inactiveInterval = mkOption {
|
||||
type = types.int;
|
||||
default = 10;
|
||||
description = ''
|
||||
Value used for <option>services.screen-locker.inactiveInterval</option>.
|
||||
'';
|
||||
};
|
||||
|
||||
};
|
||||
};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = [ cfg.package ];
|
||||
|
||||
services.screen-locker = {
|
||||
enable = true;
|
||||
inactiveInterval = cfg.inactiveInterval;
|
||||
lockCmd = "${cfg.package}/bin/betterlockscreen --lock ${
|
||||
concatStringsSep " " cfg.arguments
|
||||
}";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue