9 lines
193 B
Nix
9 lines
193 B
Nix
|
{ secrets, config, ... }:
|
||
|
{
|
||
|
services.osuchan = {
|
||
|
enable = true;
|
||
|
port = secrets.ports.osuchan;
|
||
|
secretFile = "${config.machineVars.dataDrives.default}/keys/osuchan/envfile";
|
||
|
};
|
||
|
}
|