aboutsummaryrefslogtreecommitdiff
path: root/hosts/sol/filesystems/default.nix
blob: e31b2e3509ceb586f06bdcfd4e4de8630e58e6f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  fileSystems."/" = {
    device = "/dev/disk/by-uuid/5ac7df5a-5908-4b6a-b982-88c34775205a";
    fsType = "ext4";
  };

  fileSystems."/boot" = {
    device = "/dev/disk/by-uuid/ED26-4D10";
    fsType = "vfat";
    options = [
      "fmask=0022"
      "dmask=0022"
    ];
  };

  swapDevices = [ ];
}