nixos-riscv/examples/launchSwayOnBoot.nix
2022-07-13 07:45:04 +01:00

11 lines
168 B
Nix

{
programs = {
sway.enable = true;
bash.loginShellInit = ''
if [[ "$(tty)" == /dev/tty1 ]]; then
exec sway &> /dev/null
fi
'';
};
}