nixos-demo/users/root/home/bash.nix
2025-07-12 23:16:15 +02:00

19 lines
494 B
Nix

{ osConfig, ... }:
{
programs = {
bash = {
enable = true;
shellAliases = {
ll = "ls -lAh";
cp = "cp -iv";
mv = "mv -iv";
rm = "rm -iv";
df = "df -h";
nixrbb = "nixos-rebuild boot --flake git+https://code.beancloud.de/public/nixos-demo.git?ref=${osConfig.beancloud.tier}";
nixrbs = "nixos-rebuild switch --flake git+https://code.beancloud.de/public/nixos-demo.git?ref=${osConfig.beancloud.tier}";
};
};
};
}