From db3b3b05484029bd747abad04911c405551be1dc Mon Sep 17 00:00:00 2001 From: Lorenz Leutgeb Date: Tue, 24 Jun 2025 23:16:50 +0200 Subject: [PATCH] flake: Delete Apps Nix Flake Apps are used by `nix run`, but none of the defined apps are useful to run "one off" anyways. --- flake.nix | 24 ------------------------ 1 file changed, 24 deletions(-) diff --git a/flake.nix b/flake.nix index 27625fb8..e4bda2f5 100644 --- a/flake.nix +++ b/flake.nix @@ -248,30 +248,6 @@ }; }; - apps.default = flake-utils.lib.mkApp { - drv = self.packages.${system}.radicle; - }; - - apps.radicle-full = flake-utils.lib.mkApp { - name = "rad"; - drv = self.packages.${system}.radicle-full; - }; - - apps.rad = flake-utils.lib.mkApp { - name = "rad"; - drv = self.packages.${system}.radicle-cli; - }; - - apps.git-remote-rad = flake-utils.lib.mkApp { - name = "git-remote-rad"; - drv = self.packages.${system}.radicle-remote-helper; - }; - - apps.radicle-node = flake-utils.lib.mkApp { - name = "radicle-node"; - drv = self.packages.${system}.radicle-node; - }; - devShells.default = rustup.craneLib.devShell { inherit (self.checks.${system}.pre-commit-check) shellHook; buildInputs = self.checks.${system}.pre-commit-check.enabledPackages;