From 3315322eacff78911c6450eeee8ec67b6415981a Mon Sep 17 00:00:00 2001 From: Emmet Date: Sun, 25 Feb 2024 12:30:39 -0600 Subject: [PATCH] Testing update to auto install --- flake.nix | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/flake.nix b/flake.nix index b602c252..afed8b76 100644 --- a/flake.nix +++ b/flake.nix @@ -127,20 +127,12 @@ { default = self.packages.${system}.install; - install = pkgs.writeShellApplication { - name = "install"; - text = builtins.readFile ./install.sh; - }; + install = pkgs.writeScriptBin "install" ./install.sh; }); apps = forAllSystems (system: { default = self.apps.${system}.install; - demo = { - type = "app"; - program = "${self.packages.${system}.demo}/bin/run-plasma-demo-vm"; - }; - install = { type = "app"; program = "${self.packages.${system}.install}/bin/install";