diff options
author | Freya Murphy <freya@freyacat.org> | 2025-06-19 15:32:57 -0400 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2025-06-19 15:32:57 -0400 |
commit | d0e672386d7a756e7c7bc2a5530a00801fe203c9 (patch) | |
tree | 1864dfe3a8ec0492e3ef939efb2a10484e76cf4d /flake.nix | |
parent | update astal notifications (diff) | |
download | dotfiles-nix-d0e672386d7a756e7c7bc2a5530a00801fe203c9.tar.gz dotfiles-nix-d0e672386d7a756e7c7bc2a5530a00801fe203c9.tar.bz2 dotfiles-nix-d0e672386d7a756e7c7bc2a5530a00801fe203c9.zip |
add libs to flake
Diffstat (limited to 'flake.nix')
-rw-r--r-- | flake.nix | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -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; |