Files
nixos-configs/hosts/pinwheel/modules/physlock/default.nix
2023-10-21 19:44:04 +02:00

43 lines
1.0 KiB
Nix

{ pkgs, lib, config, ... }:
let
enabled = config.mod.physlock.enable;
hyprlandEnabled = config.mod.hyprland.enable;
in
{
options = {
mod.physlock = {
enable = lib.mkEnableOption "enable physlock module";
};
};
config = lib.mkIf enabled {
services.physlock = {
enable = true;
# Wraps the `physlock` binary in a "wrapper" which allows any
# user to run the wrapper (located in `config.security.wrapperDir`)
allowAnyUser = true;
lockOn = {
hibernate = true;
suspend = true;
};
};
home-manager.users.alex = {
wayland.windowManager.hyprland = lib.mkIf hyprlandEnabled {
settings = {
bind =
let
pause-music = "${pkgs.playerctl}/bin/playerctl -p spotify pause";
in
[
"$mod SHIFT, x, exec, ${pause-music}; systemctl suspend"
"$mod, x, exec, ${pause-music}; ${config.security.wrapperDir}/physlock -d -s -m"
];
};
};
};
};
}