nixos-demo/users/root/home/bash.nix

19 lines
514 B
Nix
Raw Permalink Normal View History

2025-07-12 00:28:21 +02:00
{ osConfig, ... }:
{
programs = {
bash = {
enable = true;
shellAliases = {
ll = "ls -lAh";
cp = "cp -iv";
mv = "mv -iv";
rm = "rm -iv";
df = "df -h";
2025-08-10 22:30:37 +02:00
nixrbb = "nixos-rebuild boot --refresh --flake git+https://code.beancloud.de/public/nixos-demo.git?ref=${osConfig.beancloud.tier}";
nixrbs = "nixos-rebuild switch --refresh --flake git+https://code.beancloud.de/public/nixos-demo.git?ref=${osConfig.beancloud.tier}";
2025-07-12 00:28:21 +02:00
};
};
};
}