13 lines
320 B
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";
|
|
};
|
|
};
|
|
}
|