Massive rework to rebase on hexchen's new nixfiles deploy stuffs.

This commit is contained in:
kat witch 2021-01-24 21:37:41 +00:00 committed by kat
parent 6eac632061
commit f2eb255ba5
62 changed files with 990 additions and 846 deletions

View file

@ -1,4 +1,13 @@
{
inherit (import ./lib/deploy.nix) deploy;
pkgs = import ./pkgs;
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;
}