1{
2 fileSystems."/" = {
3 device = "/dev/disk/by-uuid/ce3212c1-5170-48bf-91cd-73c07aa49f83";
4 fsType = "btrfs";
5 options = [ "subvol=@" ];
6 };
7
8 fileSystems."/boot" = {
9 device = "/dev/disk/by-uuid/B4BE-0C8C";
10 fsType = "vfat";
11 options = [
12 "fmask=0077"
13 "dmask=0077"
14 ];
15 };
16
17 swapDevices = [
18 { device = "/dev/disk/by-uuid/303ddaaa-7ee6-4ef6-bd4f-88fd25071899"; }
19 ];
20}