store path to docker exec and correct key in gitea runner conf
Some checks failed
/ perform flake analysis (push) Successful in 1m18s
/ build hive configuration (push) Failing after 1m15s

This commit is contained in:
shobu
2025-12-24 17:56:00 +01:00
parent 45300e7a21
commit 406be9b81a
2 changed files with 4 additions and 4 deletions

View File

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

View File

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