mirror of
https://github.com/tomasriveral/nixos.git
synced 2026-08-12 02:28:37 +02:00
13 lines
253 B
Nix
13 lines
253 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
programs.zsh = {
|
|
shellAliases = {
|
|
snrt = "git add -A && time sudo nixos-rebuild test --flake ~/nixos/#laptop";
|
|
snrs = "git add -A && time sudo nixos-rebuild switch --flake ~/nixos/#laptop";
|
|
};
|
|
};
|
|
}
|