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