server: use xanmod LTS and zfs stable

This commit is contained in:
2026-07-17 12:15:46 +08:00
parent a10b255a71
commit add318487d
+1 -2
View File
@@ -18,12 +18,11 @@ in
];
boot.initrd.kernelModules = [ "amdgpu" ];
boot.kernelModules = [ "kvm-amd" ];
boot.kernelPackages = lib.mkForce pkgs.linuxPackages_xanmod_stable;
boot.kernelPackages = lib.mkForce pkgs.linuxPackages_xanmod; # LTS
boot.extraModulePackages = [ ];
boot.tmp.useTmpfs = true;
boot.supportedFilesystems = [ "zfs" ];
boot.zfs = {
package = pkgs.zfs_unstable;
extraPools = [ "data" ];
forceImportRoot = false;
};