hosts: okina: update disk configuration

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2025-06-14 17:21:08 +05:30
parent 4f0f6021e5
commit 8b12178bfc
4 changed files with 13 additions and 12 deletions

View File

@@ -25,13 +25,12 @@
fsType = "ext4";
};
/* fileSystems."/media/real" =
fileSystems."/media/real" =
{
device = "/dev/disk/by-uuid/8086be20-c770-46be-bd8f-5bd2d7735c7d";
fsType = "btrfs";
options = [ "compress-force=zstd:3" ];
};
*/
/* fileSystems."/media/ntfs" =
{
@@ -47,7 +46,7 @@
};
swapDevices = [
{ device = "/var/swap"; size = 32768; }
{ device = "/dev/disk/by-uuid/3770e3bd-a200-4e36-b3a5-4963d13865f9"; }
];
powerManagement = {
@@ -56,17 +55,18 @@
};
hardware = {
steam-hardware.enable = true;
bluetooth.enable = true;
cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
opengl = {
driSupport32Bit = true;
graphics = {
enable32Bit = true;
enable = true;
package = pkgs.mesa.drivers;
package32 = pkgs.pkgsi686Linux.mesa.drivers;
package = pkgs.mesa;
package32 = pkgs.pkgsi686Linux.mesa;
extraPackages = with pkgs; [
intel-media-driver
intel-compute-runtime
onevpl-intel-gpu
vpl-gpu-rt
];
};
};