nix-config/users/willifan/desktop/hyprland/Lillie/hyprexit.nix
2024-11-03 20:55:45 +01:00

9 lines
218 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
(pkgs.writeShellScriptBin "hyprexit" ''
${hyprland}/bin/hyprctl dispatch exit
${systemd}/bin/loginctl terminate-user willifan
'')
];
}