nixos/home/env/bash.nix

13 lines
320 B
Nix
Raw Normal View History

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