2021-01-22 19:26:05 +00:00
|
|
|
rec {
|
2021-01-10 23:53:41 +00:00
|
|
|
sources = import ./nix/sources.nix;
|
|
|
|
pkgs = import ./pkgs {};
|
2021-01-22 19:26:05 +00:00
|
|
|
inherit (pkgs) lib;
|
2021-07-29 20:31:14 +00:00
|
|
|
inherit (import (sources.nix-hexchen + "/lib/hosts.nix") {
|
|
|
|
inherit pkgs sources;
|
|
|
|
inherit ((import sources.nix-hexchen) {}) modules;
|
|
|
|
hostsDir = ./hosts; commonImports = [./common]; pkgsPath = ./pkgs;
|
|
|
|
}) hosts groups;
|
2021-01-22 19:26:05 +00:00
|
|
|
deploy = import (sources.nix-hexchen + "/lib/deploy.nix") { inherit pkgs hosts groups; };
|
2020-11-27 20:56:20 +00:00
|
|
|
}
|