store path to docker exec and correct key in gitea runner conf
Some checks are pending
/ perform flake analysis (push) Successful in 37s
/ build hive configuration (push) Has started running

use correct docker version
This commit is contained in:
shobu
2025-12-24 17:56:00 +01:00
parent 45300e7a21
commit 0032d65e18
2 changed files with 4 additions and 4 deletions

View File

@@ -1,4 +1,4 @@
{ config, ... }:
{ config, pkgs, lib, ... }:
{
users.users."starr" = {
@@ -27,7 +27,7 @@
"docker-transmission.service"
];
serviceConfig = {
ExecStart = "docker network create docker-transmission";
ExecStart = "${lib.getExe pkgs.docker} network create docker-transmission";
};
};
};
@@ -40,7 +40,7 @@
backend = "docker";
containers = {
gluetun = {
image = "qmcgaw/gluetun";
image = "qmcgasw/gluetun";
environment = {
VPN_SERVICE_PROVIDER = "airvpn";
VPN_TYPE = "wireguard";

View File

@@ -23,7 +23,7 @@
text = ''
container:
network: "host"
valid_volume:
valid_volumes:
- "/nix/store:/nix/store"
'';
};