Refactor: Moved profiles/*/home to users/kat/... Reorganised

users/kat/...
This commit is contained in:
kat witch 2021-05-06 15:43:59 +01:00
parent 99da1a04e4
commit 82d22bf87b
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
82 changed files with 302 additions and 428 deletions

View file

@ -10,15 +10,18 @@ rec {
defaultFile = "nixos.nix";
};
hosts = import ./lib/hosts.nix {
inherit pkgs sources witch profiles;
users = witch.modList { modulesDir = ./users; };
inherit (import ./lib/hosts.nix {
inherit pkgs sources witch profiles users;
inherit (deploy) target;
};
})
hosts targets;
inherit (pkgs) lib;
deploy = import ./lib/deploy.nix {
inherit pkgs sources;
inherit (hosts) hosts targets;
inherit hosts targets;
};
}