feat: switch to fish as an interactive shell
All checks were successful
/ check (push) Successful in 36s
/ check-renovaterc (push) Successful in 2s
/ build-packages (push) Successful in 37s
/ build-vm (push) Successful in 1m5s
/ report-size (push) Successful in 1m13s

Now that it is written in Rust I am interested!
This commit is contained in:
Jalil David Salamé Messina 2025-03-23 21:44:28 +01:00
parent a7195317a1
commit 615cf82b52
Signed by: jalil
GPG key ID: F016B9E770737A0B
5 changed files with 115 additions and 137 deletions

View file

@ -129,11 +129,11 @@ in
# PDF reader
zathura.enable = true;
# Auto start sway
zsh.loginExtra =
lib.optionalString cfg.sway.autostart # sh
fish.loginShellInit =
lib.optionalString cfg.sway.autostart # fish
''
# Start Sway on login to TTY 1
if [ "$TTY" = /dev/tty1 ]; then
if [ $TTY = /dev/tty1 ]; then
exec sway
fi
'';