enable mosh on varda
This commit is contained in:
parent
7b1e1b8cf4
commit
2c57288228
2 changed files with 14 additions and 1 deletions
|
@ -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;
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue