mirror of
https://github.com/gensokyo-zone/infrastructure.git
synced 2026-02-09 20:39:18 -08:00
13 lines
297 B
Nix
13 lines
297 B
Nix
let
|
|
pkgs = import ./pkgs { };
|
|
hosts = import ./lib/hosts.nix { inherit pkgs; };
|
|
in {
|
|
inherit pkgs;
|
|
inherit (pkgs) lib;
|
|
inherit (hosts) hosts profiles;
|
|
deploy = import ./lib/deploy.nix {
|
|
inherit pkgs;
|
|
inherit (hosts) hosts profiles;
|
|
};
|
|
sources = import ./nix/sources.nix;
|
|
}
|