You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
419 B
11 lines
419 B
rec {
|
|
sources = import ./nix/sources.nix;
|
|
pkgs = import ./pkgs {};
|
|
inherit (pkgs) lib;
|
|
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;
|
|
deploy = import (sources.nix-hexchen + "/lib/deploy.nix") { inherit pkgs hosts groups; };
|
|
}
|
|
|