nixos/home/env/bash.nix

13 lines
320 B
Nix

{ ... }:
{
imports = [ ./common.nix ];
programs.bash = {
enable = true;
shellAliases = {
hms = "home-manager switch -b backup -f $HOME/.dotfiles/nixos/home-manager/northstar-xenia.nix";
esway = "cd; sway -c $HOME/.dotfiles/nixos/home-manager/env/config/sway/swayconfig-northstar";
};
};
}