nix-dotfiles/hosts/tsuki/services/osuchan.nix

9 lines
193 B
Nix
Raw Normal View History

2023-01-04 14:32:11 +01:00
{ secrets, config, ... }:
{
services.osuchan = {
enable = true;
port = secrets.ports.osuchan;
secretFile = "${config.machineVars.dataDrives.default}/keys/osuchan/envfile";
};
}