Files
testrunner/flake.nix
T
MOIS3Y 77574ad361
Nix Test / test-nix (push) Failing after 13s
ci: test hello nix job
2026-06-15 16:18:02 +09:00

18 lines
330 B
Nix

{
description = "A simple Nix flake for testing Gitea Actions";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
};
outputs = { self, nixpkgs }:
let
system = "x86_64-linux";
pkgs = nixpkgs.legacyPackages.${system};
in
{
packages.${system}.default = pkgs.hello;
};
}