fix: user flake lib export should be user-lib only

This commit is contained in:
Jake Hamilton 2022-09-07 21:01:24 -07:00
parent 7e8aabfaff
commit aac9e0f375
No known key found for this signature in database
GPG key ID: 9762169A1B35EA68
2 changed files with 12 additions and 12 deletions

View file

@ -106,7 +106,7 @@ rec {
inherit hosts templates;
inherit (user-inputs) self;
lib = snowfall-lib.internal.system-lib;
lib = snowfall-lib.internal.user-lib;
inputs = snowfall-lib.flake.without-src user-inputs;
nixosModules = modules;

View file

@ -43,6 +43,6 @@ let
in
{
internal = {
inherit system-lib;
inherit system-lib user-lib;
};
}