BREAKING: Replace disk paths

This commit is contained in:
Sweetbread 2024-10-09 22:09:12 +03:00
parent 7519280a01
commit 241918bfc2
2 changed files with 9 additions and 9 deletions

View File

@ -12,20 +12,20 @@
boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "/dev/disk/by-uuid/c32a41f3-f084-44ea-ac52-179a3bc44bbf";
device = "/dev/disk/by-label/NixOS";
fsType = "ext4";
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/F3A3-D76B";
device = "/dev/disk/by-uuid/0BE3-FC0E";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
options = [ "fmask=0022" "dmask=0022" "nofail" ];
};
fileSystems."/mnt/D" = {
device = "/dev/disk/by-uuid/EC7C275B7C272036";
device = "/dev/disk/by-label/Data";
fsType = "ntfs";
options = ["umask=0022" "gid=100" "uid=1001"];
options = ["umask=0022" "gid=100" "uid=1000" "nofail" ];
};
swapDevices = [ ];

View File

@ -12,20 +12,20 @@
boot.extraModulePackages = [ ];
fileSystems."/" = {
device = "/dev/disk/by-uuid/48ebb252-9212-49e3-a036-501d549477f5";
device = "/dev/disk/by-label/NixOS";
fsType = "ext4";
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/D706-818C";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
options = [ "fmask=0022" "dmask=0022" "nofail" ];
};
fileSystems."/mnt/D" = {
device = "/dev/disk/by-uuid/3234E61E6467EB30";
device = "/dev/disk/by-label/Data";
fsType = "ntfs";
options = ["umask=0022" "gid=100" "uid=1000"];
options = [ "umask=0022" "gid=100" "uid=1000" "nofail" ];
};
swapDevices = [ ];