1 Commits
Author SHA1 Message Date
shobu 406be9b81a store path to docker exec and correct key in gitea runner conf
/ build hive configuration (push) Failing after 1m15s
/ perform flake analysis (push) Successful in 1m18s
2025-12-24 17:56:00 +01:00
2 changed files with 4 additions and 4 deletions
+3 -3
View File
@@ -1,4 +1,4 @@
{ config, ... }:
{ config, nixpkgs, lib, ... }:
{
users.users."starr" = {
@@ -27,7 +27,7 @@
"docker-transmission.service"
];
serviceConfig = {
ExecStart = "docker network create docker-transmission";
ExecStart = "${lib.getExe nixpkgs.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";
+1 -1
View File
@@ -23,7 +23,7 @@
text = ''
container:
network: "host"
valid_volume:
valid_volumes:
- "/nix/store:/nix/store"
'';
};