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