better organize related monero and matrix services
All checks were successful
Build and Deploy / deploy (push) Successful in 2m48s

This commit is contained in:
2026-04-04 14:32:26 -04:00
parent 8ea96c8b8e
commit 324a9123db
12 changed files with 19 additions and 9 deletions

View File

@@ -56,14 +56,9 @@
./services/bitwarden.nix
./services/firefox-syncserver.nix
./services/matrix.nix
./services/coturn.nix
./services/livekit.nix
./services/matrix
./services/monero.nix
./services/p2pool.nix
./services/xmrig.nix
./services/xmrig-auto-pause.nix
./services/monero
./services/graphing-calculator.nix

View File

@@ -0,0 +1,7 @@
{
imports = [
./matrix.nix
./coturn.nix
./livekit.nix
];
}

View File

@@ -3,7 +3,7 @@
...
}:
let
keyFile = ../secrets/livekit_keys;
keyFile = ../../secrets/livekit_keys;
in
{
services.livekit = {

View File

@@ -0,0 +1,8 @@
{
imports = [
./monero.nix
./p2pool.nix
./xmrig.nix
./xmrig-auto-pause.nix
];
}

View File

@@ -3,7 +3,7 @@
...
}:
let
script = ../services/xmrig-auto-pause.py;
script = ../services/monero/xmrig-auto-pause.py;
python = pkgs.python3;
in
pkgs.testers.runNixOSTest {