nixpkgs-immich/nixos/maintainers/scripts/ec2/amazon-image-zfs.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
259 B
Nix
Raw Permalink Normal View History

2024-09-17 10:23:40 -06:00
{
imports = [ ./amazon-image.nix ];
ec2.zfs = {
enable = true;
datasets = {
"tank/system/root".mount = "/";
"tank/system/var".mount = "/var";
"tank/local/nix".mount = "/nix";
"tank/user/home".mount = "/home";
};
};
}