dotfiles/home/features/desktop/hyprland/tty-init.nix

9 lines
140 B
Nix

{
programs = {
fish.loginShellInit = ''
if test (tty) = "/dev/tty1"
exec Hyprland &> /dev/null
end
'';
};
}