niksos/modules/gui/gtklock.nix

29 lines
709 B
Nix
Raw Normal View History

2023-09-09 00:06:30 +02:00
{
2023-10-13 21:04:24 +02:00
config,
lib,
pkgs,
2023-09-09 00:06:30 +02:00
...
2023-10-13 21:04:24 +02:00
}: with lib; let
cfg = config.myOptions.programs.gtklock;
username = config.myOptions.other.system.username;
2023-10-13 21:04:24 +02:00
in {
options.myOptions.programs.gtklock.enable = mkEnableOption "enable gtklock";
config = mkIf cfg.enable {
# https://github.com/NixOS/nixpkgs/issues/158025
security.pam.services.gtklock.text = "auth include login";
home-manager.users.${username} = {
2023-10-13 21:04:24 +02:00
home.packages = with pkgs; [
gtklock
];
2023-09-09 00:06:30 +02:00
2023-10-13 21:04:24 +02:00
xdg.configFile."gtklock/config.ini".text = ''
[main]
gtk-theme=${config.myOptions.themes.gtk.name}
'';
};
};
2023-09-09 00:06:30 +02:00
}