From e800cca7661af6ec447699689684fa9ec11b68ac Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Fri, 31 Dec 2021 16:16:53 +0100 Subject: [PATCH] chore: remove unneeded stuff from flake.nix --- flake.nix | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/flake.nix b/flake.nix index 890f215..60fa6e5 100644 --- a/flake.nix +++ b/flake.nix @@ -101,18 +101,6 @@ program = import ./ci.nix { inherit name system inputs; }; }; }); - in deployScripts // ciScripts // { - deploy-all = { - type = "app"; - program = toString (pkgs.writers.writeDash "deploy-all" - (nixpkgs.lib.concatMapStringsSep "\n" (script: script.program) (builtins.attrValues deployScripts))); - }; - }; - - nixosConfigurations = {}; - hydraJobs = - nixpkgs.lib.mapAttrs' - (name: config: nixpkgs.lib.nameValuePair "nixos-${name}" config.config.system.build.toplevel) - self.nixosConfigurations; + in deployScripts // ciScripts; }; }