summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
author2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-04 15:48:31 +1000
committer2 * r + 2 * t <61896496+soramanew@users.noreply.github.com>2025-08-04 15:48:31 +1000
commit981f686a3ca5e0096b41271130b975a0506b1490 (patch)
treeb808dd0469bd4c8dd160892aab0cc80285e3f46e /flake.nix
parentci: dont test random scheme (diff)
downloadcaelestia-cli-981f686a3ca5e0096b41271130b975a0506b1490.tar.gz
caelestia-cli-981f686a3ca5e0096b41271130b975a0506b1490.tar.bz2
caelestia-cli-981f686a3ca5e0096b41271130b975a0506b1490.zip
nix: add with shell package
Also fix ci
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix3
1 files changed, 2 insertions, 1 deletions
diff --git a/flake.nix b/flake.nix
index abc9583..8d480e4 100644
--- a/flake.nix
+++ b/flake.nix
@@ -35,12 +35,13 @@
app2unit = inputs.app2unit.packages.${pkgs.system}.default;
caelestia-shell = inputs.caelestia-shell.packages.${pkgs.system}.default;
};
+ with-shell = caelestia-cli.override {withShell = true;};
default = caelestia-cli;
});
devShells = forAllSystems (pkgs: {
default = pkgs.mkShellNoCC {
- packages = [(self.packages.${pkgs.system}.caelestia-cli.override {withShell = true;})];
+ packages = [self.packages.${pkgs.system}.with-shell];
};
});
};