mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-10 15:36:25 +00:00
19 lines
378 B
Nix
19 lines
378 B
Nix
{
|
|
programs = {
|
|
fish.loginShellInit = ''
|
|
if test (tty) = "/dev/tty1"
|
|
exec Hyprland &> /dev/null
|
|
end
|
|
'';
|
|
zsh.loginExtra = ''
|
|
if [ "$(tty)" = "/dev/tty1" ]; then
|
|
exec Hyprland &> /dev/null
|
|
fi
|
|
'';
|
|
zsh.profileExtra = ''
|
|
if [ "$(tty)" = "/dev/tty1" ]; then
|
|
exec Hyprland &> /dev/null
|
|
fi
|
|
'';
|
|
};
|
|
}
|