From e77fdd9eecd7a92c157a73655a3b9c93b13af2ff Mon Sep 17 00:00:00 2001 From: Valentin Gagarin Date: Fri, 27 Jun 2025 12:00:47 +0200 Subject: [PATCH] expose nixops4 in `nix-shell` (#411) Instead of https://git.fediversity.eu/Fediversity/Fediversity/pulls/406 Eventually we should merge `//panel/default.nix` with `//default.nix` of course. Co-authored-by: Nicolas Jeannerod Reviewed-on: https://git.fediversity.eu/Fediversity/Fediversity/pulls/411 Reviewed-by: Nicolas Jeannerod Co-authored-by: Valentin Gagarin Co-committed-by: Valentin Gagarin --- default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/default.nix b/default.nix index 7cd89d90..46e7350d 100644 --- a/default.nix +++ b/default.nix @@ -10,6 +10,8 @@ let gitignore ; inherit (pkgs) lib; + inherit (import sources.flake-inputs) import-flake; + inherit ((import-flake { src = ./.; }).inputs) nixops4; pre-commit-check = (import "${git-hooks}/nix" { inherit nixpkgs system; @@ -58,6 +60,7 @@ in pkgs.npins pkgs.nix-unit test-loop + nixops4.packages.${system}.default ]; };