ci: test hello nix job
Nix Test / test-nix (push) Failing after 13s

This commit is contained in:
2026-06-15 16:18:02 +09:00
parent 6e0dee4652
commit 77574ad361
4 changed files with 66 additions and 18 deletions
+17
View File
@@ -0,0 +1,17 @@
{
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;
};
}