feat(filesystems): add windows disk

This commit is contained in:
Mohammad Rafiq 2025-02-27 17:20:01 +08:00
parent e8cab9c486
commit ae1bba2857

View file

@ -12,6 +12,7 @@
boot.initrd.kernelModules = [ ];
boot.kernelModules = [ "kvm-amd" ];
boot.extraModulePackages = [ ];
boot.supportedFilesystems = [ "ntfs" ];
fileSystems."/" =
{ device = "/dev/disk/by-uuid/4d62fc8f-29d1-45a5-a980-50beea5ab892";
@ -24,6 +25,12 @@
options = [ "fmask=0077" "dmask=0077" ];
};
fileSystems."/mnt/windows" =
{ device = "/dev/nvme0n1p3";
fsType = "ntfs-3g";
options = [ "rw" "uid=rafiq" ];
};
swapDevices =
[ { device = "/dev/disk/by-uuid/1fb29964-4a65-4cf4-9b45-9534d35845bc"; }
];