.dotfiles/pkgs/endme/default.nix
Leon Schwarzäugl ad2241586e
Some checks are pending
Flake check / Check flake (push) Waiting to run
chore: flake maintenance
2025-09-23 18:43:44 +02:00

9 lines
226 B
Nix

{ name, writeShellApplication, ... }:
writeShellApplication {
inherit name;
text = ''
set -euo pipefail
systemctl --user stop graphical-session.target
systemctl --user stop graphical-session-pre.target
'';
}