witch: Deprecated

This commit is contained in:
kat witch 2021-05-06 16:00:47 +01:00
parent 0014ae5390
commit 8dbee8ce83
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
2 changed files with 4 additions and 11 deletions

View file

@ -1,16 +1,14 @@
rec {
sources = import ./nix/sources.nix;
pkgs = import ./pkgs { inherit sources; };
witch = import ./lib/witch.nix {
inherit pkgs;
lib = pkgs.lib;
};
profiles = witch.modList {
modList = import ./lib/modules.nix;
profiles = modList {
modulesDir = ./profiles;
defaultFile = "nixos.nix";
};
users = witch.modList { modulesDir = ./users; };
users = modList { modulesDir = ./users; };
inherit (import ./lib/hosts.nix {
inherit pkgs sources witch profiles users;