summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix7
1 files changed, 1 insertions, 6 deletions
diff --git a/flake.nix b/flake.nix
index f172ce3..abc9583 100644
--- a/flake.nix
+++ b/flake.nix
@@ -40,12 +40,7 @@
devShells = forAllSystems (pkgs: {
default = pkgs.mkShellNoCC {
- inputsFrom = [self.packages.${pkgs.system}.caelestia-cli];
- packages = [
- (pkgs.writeShellScriptBin "caelestia" ''
- cd src && python -m caelestia "$@"
- '')
- ];
+ packages = [(self.packages.${pkgs.system}.caelestia-cli.override {withShell = true;})];
};
});
};