feat: add lfs to gitea runner
This commit is contained in:
parent
9ac1da82fa
commit
d34544d4dc
@ -100,13 +100,13 @@
|
|||||||
"systems": "systems_2"
|
"systems": "systems_2"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1727366047,
|
"lastModified": 1727370985,
|
||||||
"narHash": "sha256-qeJQilEismXQ6pBUepB5LqrjvqRXYqiC9mkHH9ii28Q=",
|
"narHash": "sha256-dDUEMxoG3aaSDEoseVW7dapRnHIdgQkLQiFwPjo+dXQ=",
|
||||||
"path": "/home/kirara/proj/website",
|
"path": "/home/firewatch/website",
|
||||||
"type": "path"
|
"type": "path"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"path": "/home/kirara/proj/website",
|
"path": "/home/firewatch/website",
|
||||||
"type": "path"
|
"type": "path"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
helix.url = "github:helix-editor/helix";
|
helix.url = "github:helix-editor/helix";
|
||||||
|
|
||||||
blog.url = "path:/home/kirara/proj/website";
|
blog.url = "path:/home/firewatch/website";
|
||||||
blog.inputs.nixpkgs.follows = "nixpkgs";
|
blog.inputs.nixpkgs.follows = "nixpkgs";
|
||||||
|
|
||||||
bernbot.url = "github:yusdacra/bernbot";
|
bernbot.url = "github:yusdacra/bernbot";
|
||||||
|
@ -1,8 +1,20 @@
|
|||||||
{config, ...}: {
|
{pkgs, config, ...}: {
|
||||||
services.gitea-actions-runner.instances."thermex" = {
|
services.gitea-actions-runner.instances."thermex" = {
|
||||||
|
enable = true;
|
||||||
url = config.services.gitea.settings.server.ROOT_URL;
|
url = config.services.gitea.settings.server.ROOT_URL;
|
||||||
name = "thermex";
|
name = "thermex";
|
||||||
tokenFile = config.age.secrets.giteaActRunnerToken.path;
|
tokenFile = config.age.secrets.giteaActRunnerToken.path;
|
||||||
labels = ["native:host"];
|
labels = ["native:host"];
|
||||||
|
hostPackages = with pkgs; [
|
||||||
|
bash
|
||||||
|
coreutils
|
||||||
|
curl
|
||||||
|
gawk
|
||||||
|
gitMinimal
|
||||||
|
git-lfs
|
||||||
|
gnused
|
||||||
|
nodejs
|
||||||
|
wget
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user