enable mosh on varda

This commit is contained in:
Joseph Hanson 2025-03-09 00:17:28 -06:00
parent 7b1e1b8cf4
commit 2c57288228
Signed by: jahanson
SSH key fingerprint: SHA256:vy6dKBECV522aPAwklFM3ReKAVB086rT3oWwiuiFG7o
2 changed files with 14 additions and 1 deletions

View file

@ -101,7 +101,10 @@ in {
_1password-gui.enable = true;
# Mosh
mosh.enable = true;
mosh = {
enable = true;
openFirewall = true;
};
# VSCode Compatibility Settings
nix-ld.enable = true;

View file

@ -11,6 +11,7 @@
# Add required CIFS support
environment.systemPackages = with pkgs; [
cifs-utils
minio-client
];
fileSystems = {
@ -52,8 +53,17 @@
};
};
programs = {
# Mosh
mosh = {
enable = true;
openFirewall = true;
};
};
services = {
zfs = {
# This helps a lot when upgrading
expandOnBoot = "all";
autoScrub.enable = true;
trim.enable = true;