13 lines
169 B
Nix
13 lines
169 B
Nix
|
{
|
||
|
outputs,
|
||
|
hostname,
|
||
|
username,
|
||
|
...
|
||
|
}:
|
||
|
|
||
|
{
|
||
|
imports = builtins.attrValues outputs.homeManagerModules ++ [
|
||
|
../../home/${username}/hosts/${hostname}.nix
|
||
|
];
|
||
|
}
|