From d0e672386d7a756e7c7bc2a5530a00801fe203c9 Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Thu, 19 Jun 2025 15:32:57 -0400 Subject: add libs to flake --- flake.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix index b5e70c1..0088f41 100644 --- a/flake.nix +++ b/flake.nix @@ -31,6 +31,7 @@ }; outputs = { + self, nixpkgs, flake-utils, ... @@ -58,9 +59,17 @@ kaworu = nixosConfigurations.kaworu.config.home-manager.users.${options.user}.home; }; + lib = import ./lib { + inherit inputs options; + inherit (nixpkgs) lib; + }; + packages = perSystem ( pkgs: system: - import ./pkgs {inherit pkgs inputs system options;} + import ./pkgs { + inherit pkgs inputs system options; + inherit (nixpkgs) lib; + } ); legacyPackages = packages; -- cgit v1.2.3-freya