Files
runner_test/flake.nix
Arne Weiss f6ff3579b7
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 2s
test nix build
2024-05-26 16:33:15 +02:00

11 lines
275 B
Nix

{
description = "A simple Nix flake to utilize all CPU cores for a few minutes";
inputs.nixpkgs.url = "github:NixOS/nixpkgs";
outputs = { self, nixpkgs }: {
packages.x86_64-linux.default = nixpkgs.legacyPackages.x86_64-linux.callPackage ./default.nix {};
};
}