Kristian Krsnik
a2cd8d467f
* laptop, pc and common now live in systems * new dev shell to run dconf2nix * New dconf weather entry (currently not functional)
16 lines
242 B
Nix
16 lines
242 B
Nix
{...}: {
|
|
programs.bash = {
|
|
enable = true;
|
|
|
|
initExtra = ''
|
|
PS1='\[\033[1;32m\][\[\e]0;\u@\h: \w\a\]\w]\$\[\033[0m\] '
|
|
'';
|
|
|
|
shellAliases = {
|
|
ll = "ls -lh";
|
|
la = "ls -lah";
|
|
".." = "cd ..";
|
|
};
|
|
};
|
|
}
|