My Nix Configuration

[flake] remove auto checks output

Not using buildbot-nix so this isn't needed

pyrox.dev de585fc7 88c20741

verified
Changed files
-11
-11
flake.nix
···
};
formatter = channels.nixpkgs.nixfmt-rfc-style;
-
# Export packages and systems as checks for buildbot-nix
-
checks =
-
let
-
inherit (channels.nixpkgs) system;
-
packages = lib.mapAttrs' (n: lib.nameValuePair "package-${n}") self.packages.${system};
-
devShells = lib.mapAttrs' (n: lib.nameValuePair "devShell-${n}") self.devShells.${system};
-
machines = lib.mapAttrs' (
-
name: config: lib.nameValuePair "nixos-${name}" config.config.system.build.toplevel
-
) ((lib.filterAttrs (_: config: config.pkgs.system == system)) self.nixosConfigurations);
-
in
-
packages // devShells // machines;
};
deploy = lib.mkDeploy { inherit (inputs) self; };
topology = import inputs.topology {