test: setting up nas structure

This commit is contained in:
Nick 2025-12-08 22:25:13 -06:00
parent 8cd193ec49
commit 4225970826
747 changed files with 2938 additions and 4347 deletions

View file

@ -0,0 +1,29 @@
{
flake,
config,
pkgs,
lib,
...
}:
let
serverHelpers = {
ipAddress = ip: "192.168.50.${ip}";
mntPath = "/mnt/storage";
minecraft = {
id0 = 40;
id1 = 41;
id2 = 42;
ssh0 = 2440;
ssh1 = 2441;
ssh2 = 2442;
};
};
minecraft = import ./guests/firefly-iii { inherit serverHelpers; };
in
{
imports = [
minecraft
];
}