better organize related monero and matrix services
All checks were successful
Build and Deploy / deploy (push) Successful in 2m48s
All checks were successful
Build and Deploy / deploy (push) Successful in 2m48s
This commit is contained in:
@@ -56,14 +56,9 @@
|
|||||||
./services/bitwarden.nix
|
./services/bitwarden.nix
|
||||||
./services/firefox-syncserver.nix
|
./services/firefox-syncserver.nix
|
||||||
|
|
||||||
./services/matrix.nix
|
./services/matrix
|
||||||
./services/coturn.nix
|
|
||||||
./services/livekit.nix
|
|
||||||
|
|
||||||
./services/monero.nix
|
./services/monero
|
||||||
./services/p2pool.nix
|
|
||||||
./services/xmrig.nix
|
|
||||||
./services/xmrig-auto-pause.nix
|
|
||||||
|
|
||||||
./services/graphing-calculator.nix
|
./services/graphing-calculator.nix
|
||||||
|
|
||||||
|
|||||||
7
services/matrix/default.nix
Normal file
7
services/matrix/default.nix
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./matrix.nix
|
||||||
|
./coturn.nix
|
||||||
|
./livekit.nix
|
||||||
|
];
|
||||||
|
}
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
keyFile = ../secrets/livekit_keys;
|
keyFile = ../../secrets/livekit_keys;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
services.livekit = {
|
services.livekit = {
|
||||||
8
services/monero/default.nix
Normal file
8
services/monero/default.nix
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
{
|
||||||
|
imports = [
|
||||||
|
./monero.nix
|
||||||
|
./p2pool.nix
|
||||||
|
./xmrig.nix
|
||||||
|
./xmrig-auto-pause.nix
|
||||||
|
];
|
||||||
|
}
|
||||||
@@ -3,7 +3,7 @@
|
|||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
let
|
||||||
script = ../services/xmrig-auto-pause.py;
|
script = ../services/monero/xmrig-auto-pause.py;
|
||||||
python = pkgs.python3;
|
python = pkgs.python3;
|
||||||
in
|
in
|
||||||
pkgs.testers.runNixOSTest {
|
pkgs.testers.runNixOSTest {
|
||||||
|
|||||||
Reference in New Issue
Block a user