17 lines
222 B
Nix
17 lines
222 B
Nix
![]() |
{ ... }:
|
||
|
|
||
|
{
|
||
|
programs = {
|
||
|
bash = {
|
||
|
enable = true;
|
||
|
shellAliases = {
|
||
|
ll = "ls -lAh";
|
||
|
cp = "cp -iv";
|
||
|
mv = "mv -iv";
|
||
|
rm = "rm -iv";
|
||
|
df = "df -h";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|