enable runner cache
This commit is contained in:
parent
02b5b07993
commit
4991a972ae
1 changed files with 9 additions and 1 deletions
|
@ -21,7 +21,10 @@ in {
|
||||||
virtualisation.docker = {
|
virtualisation.docker = {
|
||||||
enable = true;
|
enable = true;
|
||||||
autoPrune.enable = true;
|
autoPrune.enable = true;
|
||||||
daemon.settings = {};
|
daemon.settings = {
|
||||||
|
fixed-cidr-v6 = "fd00::/80";
|
||||||
|
ipv6 = true;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
services.gitea-actions-runner = {
|
services.gitea-actions-runner = {
|
||||||
|
@ -33,6 +36,11 @@ in {
|
||||||
name = "cupsnet local";
|
name = "cupsnet local";
|
||||||
settings = {
|
settings = {
|
||||||
runner.capacity = 2;
|
runner.capacity = 2;
|
||||||
|
container.network = "host";
|
||||||
|
cache = {
|
||||||
|
enabled = true;
|
||||||
|
port = 40135;
|
||||||
|
};
|
||||||
};
|
};
|
||||||
hostPackages = with pkgs; [
|
hostPackages = with pkgs; [
|
||||||
bash
|
bash
|
||||||
|
|
Loading…
Reference in a new issue