add f2fs, optimise tbb for vmware
This commit is contained in:
@@ -85,7 +85,7 @@
|
|||||||
|
|
||||||
./modules/sys/fs/btrfs.nix
|
./modules/sys/fs/btrfs.nix
|
||||||
./modules/sys/fs/mounts/efi.nix
|
./modules/sys/fs/mounts/efi.nix
|
||||||
./modules/sys/fs/mounts/root-btrfs.nix
|
./modules/sys/fs/mounts/root-f2fs.nix
|
||||||
./modules/sys/fs/mounts/swap.nix
|
./modules/sys/fs/mounts/swap.nix
|
||||||
|
|
||||||
./modules/sys/hw/boot.nix
|
./modules/sys/hw/boot.nix
|
||||||
|
|||||||
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
fileSystems."/" =
|
||||||
|
{ device = "/dev/disk/by-label/NixOS";
|
||||||
|
fsType = "f2fs";
|
||||||
|
options = [ "discard" ];
|
||||||
|
};
|
||||||
|
}
|
||||||
@@ -10,13 +10,13 @@
|
|||||||
enable32Bit = true;
|
enable32Bit = true;
|
||||||
extraPackages = with pkgs; [
|
extraPackages = with pkgs; [
|
||||||
# Required for modern Intel GPUs (Xe iGPU and ARC)
|
# Required for modern Intel GPUs (Xe iGPU and ARC)
|
||||||
intel-media-driver # VA-API (iHD) userspace
|
#intel-media-driver # VA-API (iHD) userspace
|
||||||
vpl-gpu-rt # oneVPL (QSV) runtime
|
#vpl-gpu-rt # oneVPL (QSV) runtime
|
||||||
|
|
||||||
# Optional (compute / tooling):
|
# Optional (compute / tooling):
|
||||||
intel-compute-runtime # OpenCL (NEO) + Level Zero for Arc/Xe
|
#intel-compute-runtime # OpenCL (NEO) + Level Zero for Arc/Xe
|
||||||
# NOTE: 'intel-ocl' also exists as a legacy package; not recommended for Arc/Xe.
|
# NOTE: 'intel-ocl' also exists as a legacy package; not recommended for Arc/Xe.
|
||||||
libvdpau-va-gl # Only if you must run VDPAU-only apps
|
#libvdpau-va-gl # Only if you must run VDPAU-only apps
|
||||||
vkbasalt
|
vkbasalt
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user