19 lines
511 B
Nix
19 lines
511 B
Nix
{
|
|
home.shellAliases = {
|
|
"jc" = "sudo journalctl";
|
|
"jcu" = "journalctl --user";
|
|
"n" = "nix";
|
|
"nb" = "nix build";
|
|
"nf" = "find /nix/store/ -maxdepth 1 | grep";
|
|
"nr" = "nix repl";
|
|
"nR" = "nix run";
|
|
"ns" = "nix search nixpkgs";
|
|
"nsu" = "nix search unstable";
|
|
"nss" = "nix search stable";
|
|
"nS" = "nix shell";
|
|
"sc" = "sudo systemctl";
|
|
"scu" = "systemctl --user";
|
|
};
|
|
# programs.bash = { inherit shellAliases; };
|
|
# programs.zsh = { inherit shellAliases; };
|
|
}
|