aboutsummaryrefslogtreecommitdiff
path: root/hosts/mercury/disks.nix
blob: ffa08717090c685f1d4ce97ebb5fe5d6609834da (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
{
  # TODO: Replace this with disko eventually

  fileSystems."/" = {
    device = "/dev/disk/by-uuid/3d80a86b-3268-4209-a833-b531b8bc0ebc";
    fsType = "ext4";
  };

  fileSystems."/boot" = {
    device = "/dev/disk/by-uuid/45A4-2E5B";
    fsType = "vfat";
    options = ["fmask=0022" "dmask=0022"];
  };
}