Compare commits

..

3 Commits

Author SHA1 Message Date
shobu
406be9b81a 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
2025-12-24 17:56:00 +01:00
shobu
45300e7a21 Revert "add bookstack configuration"
This reverts commit 009dc9373f.
2025-12-24 17:45:27 +01:00
shobu
009dc9373f add bookstack configuration 2025-12-24 17:43:45 +01:00
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"
''; '';
}; };