init test

This commit is contained in:
bckelley
2026-08-14 12:44:07 -04:00
commit 34e86c6585
8 changed files with 271 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
{ config, pkgs, ... }:
let
myAliases = {
ll = "ls -l";
la = "ls -la";
".." = "cd ..";
"..." = "cd ../..";
"...." = "cd ../../..";
};
in
{
programs.bash = {
enable = false;
shellAliases = myAliases;
initExtra = ''
export PS1='\[\e[38;5;76m\]\u\[\e[0m\] in \[\e[38;5;32m\]\w\[\e[0m\] \\$ '
'';
profileExtra = ''
if [ -z "$WAYLAND_DISPLAY" ] && [ "$XDG_VTNR" = 1 ]; then
exec uwsm start -S hyprland-uwsm.desktop
fi
exec start-hyprland
'';
};
programs.fish = {
enable = false;
shellAliases = myAliases;
};
#programs.nushell = {
# enable = true;
# shellAliases = myAliases;
#};
}