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

14 lines
262 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";
2023-01-04 14:32:11 +01:00
};
systemd.services.osuchan.after = [
"data2-momiji.mount"
];
2023-01-04 14:32:11 +01:00
}