1
0

add gitea tepmlate

This commit is contained in:
stubbfelnewpc
2022-11-01 14:40:08 +00:00
parent 7ba238713a
commit fa9d75ba55
2 changed files with 3 additions and 2 deletions

1
.gitea/template Normal file
View File

@@ -0,0 +1 @@
flake.nix

View File

@@ -1,10 +1,10 @@
{ {
description = "template flake"; description = "$REPO_DESCRIPTION";
inputs.nixpkgs.url = "nixpkgs/nixos-22.05-small"; inputs.nixpkgs.url = "nixpkgs/nixos-22.05-small";
outputs = { self, nixpkgs }: outputs = { self, nixpkgs }:
let let
name = "example.sh"; name = "$REPO_NAME";
version = "0.0.1"; version = "0.0.1";
supportedSystems = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ]; supportedSystems = [ "x86_64-linux" "x86_64-darwin" "aarch64-linux" "aarch64-darwin" ];
forAllSystems = nixpkgs.lib.genAttrs supportedSystems; forAllSystems = nixpkgs.lib.genAttrs supportedSystems;