2021-04-19 02:45:08 +00:00
|
|
|
{ lib }:
|
2021-03-14 07:10:51 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Synopsis: mkNodes _nixosConfigurations_
|
|
|
|
|
|
|
|
Generate the `nodes` attribute expected by deploy-rs
|
|
|
|
where _nixosConfigurations_ are `nodes`.
|
|
|
|
**/
|
|
|
|
deploy: lib.mapAttrs (_: config: {
|
|
|
|
hostname = config.config.networking.hostName;
|
|
|
|
|
|
|
|
profiles.system = {
|
|
|
|
user = "root";
|
|
|
|
path = deploy.lib.x86_64-linux.activate.nixos config;
|
|
|
|
};
|
|
|
|
})
|