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