nix: use nixpkgs app2unit

update flake inputs
This commit is contained in:
Soramane
2025-08-09 12:59:36 +10:00
parent 7027ea5442
commit 9489f0d4f6
2 changed files with 6 additions and 37 deletions
-7
View File
@@ -4,15 +4,9 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs?ref=nixos-unstable";
app2unit = {
url = "github:soramanew/app2unit";
inputs.nixpkgs.follows = "nixpkgs";
};
caelestia-shell = {
url = "github:caelestia-dots/shell";
inputs.nixpkgs.follows = "nixpkgs";
inputs.app2unit.follows = "app2unit";
inputs.caelestia-cli.follows = "";
};
};
@@ -32,7 +26,6 @@
packages = forAllSystems (pkgs: rec {
caelestia-cli = pkgs.callPackage ./default.nix {
rev = self.rev or self.dirtyRev;
app2unit = inputs.app2unit.packages.${pkgs.system}.default;
caelestia-shell = inputs.caelestia-shell.packages.${pkgs.system}.default;
};
with-shell = caelestia-cli.override {withShell = true;};