diff options
author | Soispha <soispha@vhack.eu> | 2023-09-05 17:15:41 +0200 |
---|---|---|
committer | Soispha <soispha@vhack.eu> | 2023-09-05 17:15:41 +0200 |
commit | c0ac01f1d87ada3fc670a6efc97afc07ddb0bdee (patch) | |
tree | 377670668334abc9cb8902f69d479eff096a5c07 /flake | |
parent | Build(treewide): Update (diff) | |
download | nixos-config-c0ac01f1d87ada3fc670a6efc97afc07ddb0bdee.tar.gz nixos-config-c0ac01f1d87ada3fc670a6efc97afc07ddb0bdee.zip |
Feat(flake/packages): Pass through `shell_library_update` packages
Diffstat (limited to 'flake')
-rw-r--r-- | flake/default.nix | 12 | ||||
-rw-r--r-- | flake/packages/default.nix | 2 |
2 files changed, 13 insertions, 1 deletions
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; |