nixos-riscv/examples/launchSwayOnBoot.nix

11 lines
168 B
Nix
Raw Normal View History

2022-07-13 08:45:04 +02:00
{
programs = {
sway.enable = true;
bash.loginShellInit = ''
if [[ "$(tty)" == /dev/tty1 ]]; then
exec sway &> /dev/null
fi
'';
};
}