nix-dotfiles/modules/hm/shell_aliases.nix
2023-07-19 10:42:09 +01:00

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; };
}