nix-dotfiles/modules/shell_aliases.nix

13 lines
255 B
Nix

{ pkgs, ... }:
let
shellAliases = {
"sc" = "systemctl";
"scu" = "systemctl --user";
"hm" = "home-manager";
"ns" = "nix search nixpkgs";
};
in
{
programs.bash = { inherit shellAliases; };
programs.zsh = { inherit shellAliases; };
}