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;
|
_1password-gui.enable = true;
|
||||||
|
|
||||||
# Mosh
|
# Mosh
|
||||||
mosh.enable = true;
|
mosh = {
|
||||||
|
enable = true;
|
||||||
|
openFirewall = true;
|
||||||
|
};
|
||||||
|
|
||||||
# VSCode Compatibility Settings
|
# VSCode Compatibility Settings
|
||||||
nix-ld.enable = true;
|
nix-ld.enable = true;
|
||||||
|
|
|
@ -11,6 +11,7 @@
|
||||||
# Add required CIFS support
|
# Add required CIFS support
|
||||||
environment.systemPackages = with pkgs; [
|
environment.systemPackages = with pkgs; [
|
||||||
cifs-utils
|
cifs-utils
|
||||||
|
minio-client
|
||||||
];
|
];
|
||||||
|
|
||||||
fileSystems = {
|
fileSystems = {
|
||||||
|
@ -52,8 +53,17 @@
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
programs = {
|
||||||
|
# Mosh
|
||||||
|
mosh = {
|
||||||
|
enable = true;
|
||||||
|
openFirewall = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
zfs = {
|
zfs = {
|
||||||
|
# This helps a lot when upgrading
|
||||||
expandOnBoot = "all";
|
expandOnBoot = "all";
|
||||||
autoScrub.enable = true;
|
autoScrub.enable = true;
|
||||||
trim.enable = true;
|
trim.enable = true;
|
||||||
|
|
Loading…
Add table
Reference in a new issue