add forgejo runner

This commit is contained in:
Lzebulon 2025-08-06 20:12:52 +02:00
parent 5db6606ef8
commit b49363f299
Signed by: lzebulon
GPG key ID: D6CDAB8050CBBE7D
7 changed files with 139 additions and 5 deletions

View file

@ -3,9 +3,11 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-25.05";
agenix.url = "github:ryantm/agenix";
};
outputs = { self, nixpkgs }@inputs:
outputs = { self, nixpkgs, agenix }@inputs:
let
system = "x86_64-linux";
in
@ -18,6 +20,7 @@
modules = [
./hosts/physique/hyponix
./modules
agenix.nixosModules.default
];
};
};
@ -25,7 +28,6 @@
devShells.x86_64-linux.default =
let pkgs = import nixpkgs { inherit system; };
in pkgs.callPackage ./tools/devshell.nix { };
in pkgs.callPackage ./tools/devshell.nix { agenix = agenix; };
};
}