From c0ac01f1d87ada3fc670a6efc97afc07ddb0bdee Mon Sep 17 00:00:00 2001 From: Soispha Date: Tue, 5 Sep 2023 17:15:41 +0200 Subject: Feat(flake/packages): Pass through `shell_library_update` packages --- flake/default.nix | 12 +++++++++++- flake/packages/default.nix | 2 ++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/flake/default.nix b/flake/default.nix index b88370c0..f7efdb6c 100644 --- a/flake/default.nix +++ b/flake/default.nix @@ -93,7 +93,17 @@ in { ; }; packages."${system}" = import ./packages { - inherit nixos-generators defaultSpecialArgs defaultModules pkgs sysLib system nixVim self; + inherit + nixos-generators + defaultSpecialArgs + defaultModules + pkgs + sysLib + system + nixVim + self + shell_library + ; inherit (pkgs) lib; }; diff --git a/flake/packages/default.nix b/flake/packages/default.nix index 80159a80..a78b45c5 100644 --- a/flake/packages/default.nix +++ b/flake/packages/default.nix @@ -7,6 +7,7 @@ sysLib, nixVim, system, + shell_library, ... }: let inherit (pkgs) lib; @@ -65,6 +66,7 @@ in ]; format = "install-iso"; }; + update_shell_lib = shell_library.packages."${system}".update_shell_library; gpg-iso = nixos-generators.nixosGenerate { system = "x86_64-linux"; specialArgs = defaultSpecialArgs; -- cgit 1.4.1