diff options
| author | Soramane <61896496+soramanew@users.noreply.github.com> | 2025-07-16 13:38:19 +1000 |
|---|---|---|
| committer | Soramane <61896496+soramanew@users.noreply.github.com> | 2025-07-16 13:38:19 +1000 |
| commit | 19431534c954f763eb095dd131fd0b19ff74837b (patch) | |
| tree | 45732bd8602b1960be4166c22da436c825986d67 /flake.nix | |
| parent | nix: fix typo in default.nix (#219) (diff) | |
| download | caelestia-shell-19431534c954f763eb095dd131fd0b19ff74837b.tar.gz caelestia-shell-19431534c954f763eb095dd131fd0b19ff74837b.tar.bz2 caelestia-shell-19431534c954f763eb095dd131fd0b19ff74837b.zip | |
nix: optionally include cli
update flake inputs
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -13,6 +13,12 @@ url = "github:soramanew/app2unit"; inputs.nixpkgs.follows = "nixpkgs"; }; + + caelestia-cli = { + url = "github:caelestia-dots/cli"; + inputs.nixpkgs.follows = "nixpkgs"; + inputs.app2unit.follows = "app2unit"; + }; }; outputs = { @@ -35,6 +41,7 @@ withI3 = false; }; app2unit = inputs.app2unit.packages.${pkgs.system}.default; + caelestia-cli = inputs.caelestia-cli.packages.${pkgs.system}.default.override; }; default = caelestia-shell; }); |