Files
nix-config-ryan4yin/outputs/x86_64-linux/tests/home-manager/expected.nix
2025-08-20 00:03:25 +08:00

15 lines
189 B
Nix

{
myvars,
lib,
}:
let
username = myvars.username;
hosts = [
"ai-hyprland"
"ai-niri"
"ruby"
"k3s-prod-1-master-1"
];
in
lib.genAttrs hosts (_: "/home/${username}")