Files
nix-config/outputs/x86_64-linux/tests/home-manager/expected.nix

13 lines
177 B
Nix

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