current
 1{
 2  den.aspects.mobius.nixos = {
 3    swapDevices = [
 4      {
 5        device = "/dev/disk/by-uuid/65d34919-c7fc-4920-b110-05dea8e21bbb";
 6      }
 7    ];
 8
 9    fileSystems."/" = {
10      device = "/dev/disk/by-uuid/981af563-01b0-4863-b8ef-b1f1d5c7059b";
11      fsType = "btrfs";
12      options = ["subvol=root" "compress=zstd"];
13    };
14
15    fileSystems."/nix" = {
16      device = "/dev/disk/by-uuid/981af563-01b0-4863-b8ef-b1f1d5c7059b";
17      fsType = "btrfs";
18      options = ["subvol=nix" "noatime" "compress=zstd"];
19    };
20
21    fileSystems."/home" = {
22      device = "/dev/disk/by-uuid/981af563-01b0-4863-b8ef-b1f1d5c7059b";
23      fsType = "btrfs";
24      options = ["subvol=home" "compress=zstd"];
25    };
26
27    fileSystems."/boot" = {
28      device = "/dev/disk/by-uuid/CD11-3A7D";
29      fsType = "vfat";
30      options = ["fmask=0022" "dmask=0022"];
31    };
32  };
33}