11 lines
308 B
Nix
11 lines
308 B
Nix
{ lib, config, pkgs, ... }:
|
|
{
|
|
home-manager.users.willifan = {
|
|
home.packages = lib.mkIf config.desktop.hyprexit.enable [
|
|
(pkgs.writeShellScriptBin "hyprexit" ''
|
|
${pkgs.hyprland}/bin/hyprctl dispatch exit
|
|
${pkgs.systemd}/bin/loginctl terminate-user willifan
|
|
'')
|
|
];
|
|
};
|
|
}
|