2022-11-12 09:21:58 +01:00
|
|
|
{ pkgs, config, lib, ... }:
|
|
|
|
|
|
|
|
with lib;
|
2022-06-07 21:01:14 +02:00
|
|
|
|
|
|
|
let cfg = config.programs.swaylock;
|
|
|
|
in {
|
2022-11-12 09:21:58 +01:00
|
|
|
meta.maintainers = [ hm.maintainers.rcerc ];
|
|
|
|
|
|
|
|
options.programs.swaylock = {
|
|
|
|
enable = mkOption {
|
|
|
|
type = lib.types.bool;
|
|
|
|
default = versionOlder config.home.stateVersion "23.05"
|
|
|
|
&& (cfg.settings != { });
|
|
|
|
defaultText = literalExpression ''
|
|
|
|
true if state version < 23.05 and settings ≠ { },
|
|
|
|
false otherwise
|
|
|
|
'';
|
|
|
|
example = true;
|
2023-09-07 17:13:10 +02:00
|
|
|
description = ''
|
|
|
|
Whether to enable swaylock.
|
|
|
|
|
|
|
|
Note that PAM must be configured to enable swaylock to perform
|
|
|
|
authentication. The package installed through home-manager
|
|
|
|
will *not* be able to unlock the session without this
|
|
|
|
configuration.
|
|
|
|
|
|
|
|
On NixOS, this is by default enabled with the sway module, but
|
|
|
|
for other compositors it can currently be enabled using:
|
|
|
|
|
|
|
|
```nix
|
|
|
|
security.pam.services.swaylock = {};
|
|
|
|
```
|
|
|
|
'';
|
2022-11-12 09:21:58 +01:00
|
|
|
};
|
2022-06-07 21:01:14 +02:00
|
|
|
|
2023-07-02 01:45:18 +02:00
|
|
|
package = mkPackageOption pkgs "swaylock" { };
|
2022-11-12 09:21:58 +01:00
|
|
|
|
|
|
|
settings = mkOption {
|
|
|
|
type = with types; attrsOf (oneOf [ bool float int str ]);
|
|
|
|
default = { };
|
2023-07-02 01:45:18 +02:00
|
|
|
description = ''
|
2023-07-01 01:30:13 +02:00
|
|
|
Default arguments to {command}`swaylock`. An empty set
|
2022-11-12 09:21:58 +01:00
|
|
|
disables configuration generation.
|
|
|
|
'';
|
|
|
|
example = {
|
|
|
|
color = "808080";
|
|
|
|
font-size = 24;
|
|
|
|
indicator-idle-visible = false;
|
|
|
|
indicator-radius = 100;
|
|
|
|
line-color = "ffffff";
|
|
|
|
show-failed-attempts = true;
|
|
|
|
};
|
2022-06-07 21:01:14 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2022-11-12 09:21:58 +01:00
|
|
|
config = mkIf cfg.enable {
|
2023-04-15 17:04:14 +02:00
|
|
|
assertions = [
|
|
|
|
(lib.hm.assertions.assertPlatform "programs.swaylock" pkgs
|
|
|
|
lib.platforms.linux)
|
|
|
|
];
|
|
|
|
|
2022-11-12 09:21:58 +01:00
|
|
|
home.packages = [ cfg.package ];
|
|
|
|
|
|
|
|
xdg.configFile."swaylock/config" = mkIf (cfg.settings != { }) {
|
|
|
|
text = concatStrings (mapAttrsToList (n: v:
|
|
|
|
if v == false then
|
|
|
|
""
|
|
|
|
else
|
|
|
|
(if v == true then n else n + "=" + builtins.toString v) + "\n")
|
|
|
|
cfg.settings);
|
|
|
|
};
|
2022-06-07 21:01:14 +02:00
|
|
|
};
|
|
|
|
}
|