feat: test

This commit is contained in:
Nick 2025-06-08 22:52:52 -05:00
parent fe7cdbef84
commit 4bb34b4ccd
2 changed files with 3 additions and 2 deletions

View file

@ -17,7 +17,7 @@
builtins.listToAttrs ( builtins.listToAttrs (
map (dir: { map (dir: {
name = baseNameOf (toString dir); name = baseNameOf (toString dir);
value = { ... }: import dir; # Wrap as module value = import dir;
}) (collectDirs path) }) (collectDirs path)
); );
} }

View file

@ -1,5 +1,6 @@
{ flake, ... }: { config, ... }:
let let
flake = config.flake;
inherit (flake.config.people) user0; inherit (flake.config.people) user0;
inherit (flake.config.machines.devices) ceres; inherit (flake.config.machines.devices) ceres;
inherit (flake.config.services.instances) jellyfin web; inherit (flake.config.services.instances) jellyfin web;