about summary refs log tree commit diff stats
path: root/flake
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-09-05 17:15:41 +0200
committerSoispha <soispha@vhack.eu>2023-09-05 17:15:41 +0200
commitc0ac01f1d87ada3fc670a6efc97afc07ddb0bdee (patch)
tree377670668334abc9cb8902f69d479eff096a5c07 /flake
parentBuild(treewide): Update (diff)
downloadnixos-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.nix12
-rw-r--r--flake/packages/default.nix2
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;