Skip to content

Commit

Permalink
Add faftest2 zfs mounts
Browse files Browse the repository at this point in the history
  • Loading branch information
Brutus5000 committed Oct 11, 2023
1 parent c8669b5 commit 8e83d7d
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions machines/test2/hardware-configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,56 @@
fsType = "vfat";
};

fileSystems."/var/lib/docker" =
{ device = "/dev/zvol/tank/nixos/docker";
fsType = "ext4";
};

fileSystems."/var/lib/rancher" =
{ device = "/dev/zvol/tank/nixos/rancher";
fsType = "ext4";
};

fileSystems."/opt/faf" =
{ device = "tank/faf";
fsType = "zfs";
};

fileSystems."/opt/faf/data/faf-db" =
{ device = "tank/faf/mariadb";
fsType = "zfs";
};

fileSystems."/opt/faf/data/legacy-featured-mod-files" =
{ device = "tank/faf/legacy-featured-mod-files";
fsType = "zfs";
};

fileSystems."/opt/faf/data/maps" =
{ device = "tank/faf/maps";
fsType = "zfs";
};

fileSystems."/opt/faf/data/mods" =
{ device = "tank/faf/mods";
fsType = "zfs";
};

fileSystems."/opt/faf/data/phpbb3" =
{ device = "tank/faf/phpbb3";
fsType = "zfs";
};

fileSystems."/opt/faf/data/nodebb" =
{ device = "tank/faf/nodebb";
fsType = "zfs";
};

fileSystems."/opt/faf/data/mongodb" =
{ device = "tank/faf/mongodb";
fsType = "zfs";
};

swapDevices = [ ];

# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
Expand Down

0 comments on commit 8e83d7d

Please sign in to comment.