mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-28 04:11:49 +01:00
16 lines
233 B
Nix
16 lines
233 B
Nix
{
|
|
myvars,
|
|
lib,
|
|
outputs,
|
|
}: let
|
|
username = myvars.username;
|
|
hosts = [
|
|
"fern"
|
|
];
|
|
in
|
|
lib.genAttrs
|
|
hosts
|
|
(
|
|
name: outputs.darwinConfigurations.${name}.config.home-manager.users.${username}.home.homeDirectory
|
|
)
|