mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
25 lines
653 B
Nix
25 lines
653 B
Nix
{ lib, pkgs, config, ... }:
|
|
|
|
let
|
|
cfg = config.programs.hyprlock;
|
|
in
|
|
{
|
|
options.programs.hyprlock = {
|
|
enable = lib.mkEnableOption "hyprlock, Hyprland's GPU-accelerated screen locking utility";
|
|
package = lib.mkPackageOption pkgs "hyprlock" { };
|
|
};
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
environment.systemPackages = [
|
|
cfg.package
|
|
];
|
|
|
|
# Hyprlock needs Hypridle systemd service to be running to detect idle time
|
|
services.hypridle.enable = true;
|
|
|
|
# Hyprlock needs PAM access to authenticate, else it fallbacks to su
|
|
security.pam.services.hyprlock = {};
|
|
};
|
|
|
|
meta.maintainers = with lib.maintainers; [ johnrtitor ];
|
|
}
|