mirror of
https://github.com/jbowdre/dotfiles.git
synced 2024-11-26 02:52:18 +00:00
10 lines
140 B
Nix
10 lines
140 B
Nix
|
{
|
||
|
programs = {
|
||
|
fish.loginShellInit = ''
|
||
|
if test (tty) = "/dev/tty1"
|
||
|
exec Hyprland &> /dev/null
|
||
|
end
|
||
|
'';
|
||
|
};
|
||
|
}
|