commit 26941459345894a188c1e655ef9fbf41e831a1c7
parent 268654b256bf2403e41a79e9dfe6d9a2a3742bd3
Author: Vincent Demeester <vincent@sbr.pm>
Date: Wed, 12 Jun 2024 15:45:27 +0200
users/vincent: automatically start Hyprland…
… on tty1… because… why not 😅
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
Diffstat:
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/users/vincent/core/zsh.nix b/users/vincent/core/zsh.nix
@@ -84,9 +84,9 @@ in
'';
loginExtra = ''
# export GOPATH=${config.home.homeDirectory}
- # if [[ -z $DISPLAY && $TTY = /dev/tty1 ]]; then
- # exec sway
- # fi
+ if [[ -z $DISPLAY && $TTY = /dev/tty1 ]]; then
+ exec Hyprland
+ fi
'';
profileExtra = ''
if [ -e /home/vincent/.nix-profile/etc/profile.d/nix.sh ]; then . /home/vincent/.nix-profile/etc/profile.d/nix.sh; fi