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

13 lines
244 B
Nix
Raw Normal View History

2023-01-04 14:32:11 +01:00
{ secrets, config, ... }:
{
services.osuchan = {
enable = true;
port = 9283;
2023-01-04 14:32:11 +01:00
secretFile = "${config.machineVars.dataDrives.default}/keys/osuchan/envfile";
};
systemd.services.osuchan.after = [
"data2-momiji.mount"
];
2023-01-04 14:32:11 +01:00
}