mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 04:19:19 -08:00
14 lines
317 B
Nix
14 lines
317 B
Nix
rec {
|
|
sources = import ./nix/sources.nix;
|
|
pkgs = import ./pkgs { };
|
|
witch = import ./lib/witch.nix { lib = pkgs.lib; };
|
|
|
|
hosts = import ./lib/hosts.nix { inherit pkgs sources witch; };
|
|
|
|
inherit (pkgs) lib;
|
|
|
|
deploy = import ./lib/deploy.nix {
|
|
inherit pkgs;
|
|
inherit (hosts) hosts profiles;
|
|
};
|
|
}
|