summaryrefslogblamecommitdiffstats
path: root/systems/jontop/filesystem.nix
blob: 51176802ae059c26c42ad87258d064bf1919c716 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16















                                                                            
{ ... }:
{
  fileSystems."/" =
    { device = "/dev/disk/by-uuid/72e455f9-4b10-4cb2-a8e4-cfe39c4a8d1f";
      fsType = "btrfs";
    };

  fileSystems."/boot" =
    { device = "/dev/disk/by-uuid/27F7-4AFD";
      fsType = "vfat";
    };

  swapDevices =
    [ { device = "/dev/disk/by-uuid/4133a381-ab7d-4a25-9013-3f4b2d31bc5a"; }
    ];
}