diff options
| author | Soramane <61896496+soramanew@users.noreply.github.com> | 2025-07-16 13:43:12 +1000 |
|---|---|---|
| committer | Soramane <61896496+soramanew@users.noreply.github.com> | 2025-07-16 13:43:12 +1000 |
| commit | 89892f4d09d8205bdfacde3867ca832878493231 (patch) | |
| tree | cdde3153f62946f57e3479d0efb9b46df3564765 /flake.nix | |
| parent | nix: add direnv support (diff) | |
| download | caelestia-cli-89892f4d09d8205bdfacde3867ca832878493231.tar.gz caelestia-cli-89892f4d09d8205bdfacde3867ca832878493231.tar.bz2 caelestia-cli-89892f4d09d8205bdfacde3867ca832878493231.zip | |
nix: optionally include shell
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -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; }); |