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

10 lines
140 B
Nix
Raw Normal View History

2023-10-01 19:17:04 +00:00
{
programs = {
fish.loginShellInit = ''
if test (tty) = "/dev/tty1"
exec Hyprland &> /dev/null
end
'';
};
}