From 0d8b1f53a2e86d082d1d597d694b1c15dc0404fe Mon Sep 17 00:00:00 2001 From: s-prechtl Date: Fri, 19 Sep 2025 20:36:05 +0200 Subject: [PATCH] feat: big ass disk --- hosts/saberofxebec/hardware-configuration.nix | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/hosts/saberofxebec/hardware-configuration.nix b/hosts/saberofxebec/hardware-configuration.nix index 3d43959..57e6ac8 100644 --- a/hosts/saberofxebec/hardware-configuration.nix +++ b/hosts/saberofxebec/hardware-configuration.nix @@ -16,12 +16,19 @@ boot.initrd.kernelModules = []; boot.kernelModules = ["kvm-intel"]; boot.extraModulePackages = []; + boot.supportedFilesystems = [ "ntfs" ]; fileSystems."/" = { device = "/dev/disk/by-uuid/5af04782-c4e8-4414-a967-c98415965eee"; fsType = "ext4"; }; + fileSystems."/media" = { + device = "/dev/disk/by-partuuid/be8b55ea-2591-4f50-a08e-38e30e1039fe"; + fsType = "ntfs-3g"; + options = [ "rw" ]; + }; + fileSystems."/boot" = { device = "/dev/disk/by-uuid/6D77-643B"; fsType = "vfat";