Compare commits

..

No commits in common. "a598918c63ce3f7c246d784bf1034a3faa920f59" and "3044c426fdcefb88cf45e4d48782b58c2e15b842" have entirely different histories.

3 changed files with 1299 additions and 4 deletions

1
.gitignore vendored
View file

@ -1,2 +1 @@
!**/.keep
result

1295
flake.lock Normal file

File diff suppressed because it is too large Load diff

View file

@ -120,12 +120,13 @@
];
};
platformHome = name: platform: let
platformHome = platform: let
value = home platform;
in {
inherit name value;
inherit value;
name = "${value.config.home.username}@${value.config.local.hostname}";
};
in
mapAttrs' platformHome (importAll {root = ./home/platforms;});
mapAttrs' (_: platformHome) (importAll {root = ./home/platforms;});
};
}