removed more unnecessary stuff

This commit is contained in:
twoneis 2024-05-08 22:43:33 +02:00
parent b6a9770004
commit 0f797c956f

View file

@ -11,7 +11,6 @@
fileSystems = { fileSystems = {
"/boot" = { "/boot" = {
device = "/dev/disk/by-uuid/7ABC-9C12"; device = "/dev/disk/by-uuid/7ABC-9C12";
neededForBoot = true;
fsType = "vfat"; fsType = "vfat";
}; };
"/" = { "/" = {
@ -22,19 +21,11 @@
"/nix" = { "/nix" = {
device = "/dev/disk/by-uuid/b6e6bca7-1435-4b41-b174-8550eace7c32"; device = "/dev/disk/by-uuid/b6e6bca7-1435-4b41-b174-8550eace7c32";
fsType = "btrfs"; fsType = "btrfs";
neededForBoot = true;
options = [ "subvol=nix" "compress=zstd" "noatime" ]; options = [ "subvol=nix" "compress=zstd" "noatime" ];
}; };
"/persist" = {
device = "/dev/disk/by-uuid/b6e6bca7-1435-4b41-b174-8550eace7c32";
fsType = "btrfs";
neededForBoot = true;
options = [ "subvol=persist" "compress=zstd" "noatime" ];
};
"/ext" = { "/ext" = {
device = "/dev/disk/by-uuid/3ed92a26-775a-4e39-ac1c-84b2822cd3dd"; device = "/dev/disk/by-uuid/3ed92a26-775a-4e39-ac1c-84b2822cd3dd";
fsType = "btrfs"; fsType = "btrfs";
neededForBoot = true;
options = [ "subvol=ext" "compress=zstd" "noatime" ]; options = [ "subvol=ext" "compress=zstd" "noatime" ];
}; };
}; };