mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-01-11 12:30:23 +01:00
15 lines
230 B
Nix
15 lines
230 B
Nix
{
|
|
myvars,
|
|
lib,
|
|
outputs,
|
|
}:
|
|
let
|
|
username = myvars.username;
|
|
hosts = [
|
|
"shoukei-niri"
|
|
];
|
|
in
|
|
lib.genAttrs hosts (
|
|
name: outputs.nixosConfigurations.${name}.config.home-manager.users.${username}.home.homeDirectory
|
|
)
|