hosts/bootstrap: update compression option and kernel packages

This commit is contained in:
Gabriel Arazas 2024-01-15 08:00:15 +08:00
parent 0760acb676
commit c0d6422eea
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC

View File

@ -14,9 +14,11 @@
source = ../..; source = ../..;
target = "/etc/nixos/"; target = "/etc/nixos/";
}]; }];
squashFsCompression = "zstd -Xcompression-level 8";
}; };
boot.kernelPackages = pkgs.linuxPackages_6_1; boot.kernelPackages = pkgs.linuxPackages_6_6;
# Assume that this will be used for remote installations. # Assume that this will be used for remote installations.
services.openssh = { services.openssh = {
@ -24,6 +26,5 @@
allowSFTP = true; allowSFTP = true;
}; };
documentation.nixos.options.splitBuild = false;
system.stateVersion = "23.11"; system.stateVersion = "23.11";
} }