From 89892f4d09d8205bdfacde3867ca832878493231 Mon Sep 17 00:00:00 2001 From: Soramane <61896496+soramanew@users.noreply.github.com> Date: Wed, 16 Jul 2025 13:43:12 +1000 Subject: nix: optionally include shell --- flake.nix | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix index 0e41be5..e9c4c31 100644 --- a/flake.nix +++ b/flake.nix @@ -8,6 +8,12 @@ url = "github:soramanew/app2unit"; inputs.nixpkgs.follows = "nixpkgs"; }; + + caelestia-shell = { + url = "github:caelestia-dots/shell"; + inputs.nixpkgs.follows = "nixpkgs"; + inputs.app2unit.follows = "app2unit"; + }; }; outputs = { @@ -26,6 +32,7 @@ caelestia-cli = pkgs.callPackage ./default.nix { rev = self.rev or self.dirtyRev; app2unit = inputs.app2unit.packages.${pkgs.system}.default; + caelestia-shell = inputs.caelestia-cli.packages.${pkgs.system}.default; }; default = caelestia-cli; }); -- cgit v1.2.3-freya