added disk uuids

This commit is contained in:
twoneis 2024-05-08 16:07:12 +02:00
parent 2d1e4f2af7
commit 69517aec74

View file

@ -5,27 +5,27 @@
boot.extraModulePackages = [ ]; boot.extraModulePackages = [ ];
fileSystems = { fileSystems = {
"/boot" = {
device = "/dev/disk/by-uuid/646D-4793";
fsType = "vfat";
};
"/" = { "/" = {
device = "/dev/nvme0n1p2"; device = "/dev/disk/by-uuid/1a5777297-4ed3-48d7-adc7-a937fa93d868";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=rootfs" "compress=zstd" "noatime" ]; options = [ "subvol=rootfs" "compress=zstd" "noatime" ];
}; };
"/boot" = {
device = "/dev/nvme0n1p1";
fsType = "vfat";
};
"/nix" = { "/nix" = {
device = "/dev/nvme0n1p2"; device = "/dev/disk/by-uuid/1a5777297-4ed3-48d7-adc7-a937fa93d868";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=nix" "compress=zstd" "noatime" ]; options = [ "subvol=nix" "compress=zstd" "noatime" ];
}; };
"/persist" = { "/persist" = {
device = "/dev/nvme0n1p2"; device = "/dev/disk/by-uuid/1a5777297-4ed3-48d7-adc7-a937fa93d868";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=persist" "compress=zstd" "noatime" ]; options = [ "subvol=persist" "compress=zstd" "noatime" ];
}; };
"/ext" = { "/ext" = {
device = "/dev/sda1"; device = "/dev/disk/by-uuid/89112638-6953-48a7-9b2f-dd61ce9fe8b0";
fsType = "btrfs"; fsType = "btrfs";
options = [ "subvol=ext" "compress=zstd" "noatime" ]; options = [ "subvol=ext" "compress=zstd" "noatime" ];
}; };