nix: optionally include shell

This commit is contained in:
Soramane
2025-07-16 13:43:12 +10:00
parent b1019d1192
commit 89892f4d09
3 changed files with 97 additions and 14 deletions
+7
View File
@@ -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;
});