1
Fork 0
mirror of https://github.com/RGBCube/ncc synced 2025-09-13 01:27:56 +00:00

mosh: add alias

This commit is contained in:
RGBCube 2025-08-08 22:40:51 +03:00
parent f96334ea87
commit 087de0b0fc
Signed by: RGBCube
SSH key fingerprint: SHA256:CzqbPcfwt+GxFYNnFVCqoN5Itn4YFrshg1TrnACpA5M

View file

@ -53,7 +53,8 @@ in {
};
})];
environment.systemPackages = mkIf config.isDesktop [
pkgs.mosh
];
environment = mkIf config.isDesktop {
systemPackages = [ pkgs.mosh ];
shellAliases.mosh = "mosh --no-init";
};
}