Files
nix-config/outputs/x86_64-linux/tests/home-manager/expected.nix
2024-09-03 00:06:34 +08:00

14 lines
200 B
Nix

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