summaryrefslogtreecommitdiff
path: root/flake.nix
diff options
context:
space:
mode:
authorSoramane <61896496+soramanew@users.noreply.github.com>2025-08-09 12:56:56 +1000
committerSoramane <61896496+soramanew@users.noreply.github.com>2025-08-09 12:56:56 +1000
commita2a0bb5866b18ea4d66fdbdf089e0ca25b222b9e (patch)
tree4dc1feee5d4a5c6f2d33b70f62af2b86365a9815 /flake.nix
parentci: only check flake.lock (diff)
downloadcaelestia-shell-a2a0bb5866b18ea4d66fdbdf089e0ca25b222b9e.tar.gz
caelestia-shell-a2a0bb5866b18ea4d66fdbdf089e0ca25b222b9e.tar.bz2
caelestia-shell-a2a0bb5866b18ea4d66fdbdf089e0ca25b222b9e.zip
nix: use nixpkgs app2unit
Diffstat (limited to 'flake.nix')
-rw-r--r--flake.nix8
1 files changed, 1 insertions, 7 deletions
diff --git a/flake.nix b/flake.nix
index 79ae4b1..cb3c6b0 100644
--- a/flake.nix
+++ b/flake.nix
@@ -9,15 +9,9 @@
inputs.nixpkgs.follows = "nixpkgs";
};
- app2unit = {
- url = "github:soramanew/app2unit";
- inputs.nixpkgs.follows = "nixpkgs";
- };
-
caelestia-cli = {
url = "github:caelestia-dots/cli";
inputs.nixpkgs.follows = "nixpkgs";
- inputs.app2unit.follows = "app2unit";
inputs.caelestia-shell.follows = "";
};
};
@@ -41,9 +35,9 @@
withX11 = false;
withI3 = false;
};
- app2unit = inputs.app2unit.packages.${pkgs.system}.default;
caelestia-cli = inputs.caelestia-cli.packages.${pkgs.system}.default;
};
+ with-cli = caelestia-shell.override {withCli = true;};
default = caelestia-shell;
});