diff --git a/flake.nix b/flake.nix index efcb0fa..017bbd9 100644 --- a/flake.nix +++ b/flake.nix @@ -18,6 +18,7 @@ outputs = { self, nixpkgs, agenix, nix-serve-ng, ... }@attrs: let + forEachSystem = nixpkgs.lib.genAttrs system; pkgs = import nixpkgs { inherit system; }; shell = import ./shell.nix { inherit agenix pkgs; }; system = "x86_64-linux"; @@ -27,8 +28,7 @@ formatter.x86_64-linux = nixpkgs.legacyPackages.x86_64-linux.nixpkgs-fmt; hydraJobs = { - devshell = shell.dev; - formatter = shell.packages.x86_64-linux.format; + build = shell.packages.${system}.format; }; packages = shell.packages;