add an alias for the management-server

This commit is contained in:
Andreas Zweili 2022-01-31 11:28:16 +01:00
parent 640fdeb710
commit 641b0532c6
1 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,4 @@
{ pkgs, ... }:
{ pkgs, username, ... }:
{
networking = {
networkmanager.enable = true;
@ -58,5 +58,8 @@
source-code-pro
terminator
];
environment.shellAliases = {
management-server = "mosh ${username}@10.7.89.150 tmux a";
};
}