feat(tests): add eval tests for darwin systems

This commit is contained in:
Ryan Yin
2024-03-14 01:11:54 +08:00
parent 532121ecd4
commit a4d3867a73
11 changed files with 104 additions and 1 deletions

View File

@@ -0,0 +1,15 @@
{
myvars,
lib,
outputs,
}: let
username = myvars.username;
hosts = [
"fern"
];
in
lib.genAttrs
hosts
(
name: outputs.darwinConfigurations.${name}.config.home-manager.users.${username}.home.homeDirectory
)