fixes and improvements

This commit is contained in:
2025-07-25 10:24:08 +02:00
parent e2f428bc64
commit 0f51bf1abb
46 changed files with 780 additions and 63 deletions
+11 -11
View File
@@ -4,17 +4,17 @@
enable = true;
settings = {
terminal.shell = {
program = "/bin/sh";
args = [
"-c"
''
if command -v zellij >/dev/null 2>&1; then
exec zellij
else
exec "${SHELL:-/bin/bash}"
fi
''
];
program = "${pkgs.fish}/bin/fish";
# args = [
# "-c"
# ''
# if command -v zellij >/dev/null 2>&1; then
# exec zellij
# else
# exec "${SHELL:-/bin/bash}"
# fi
# ''
# ];
};
};
};