nixos-config/configurations/host/valkyrie/services/default.nix

18 lines
341 B
Nix
Raw Normal View History

{ config, pkgs, ... }:
2023-10-20 23:28:59 +02:00
{
2024-03-11 16:19:31 +01:00
imports =
2023-10-20 23:28:59 +02:00
[
./pleroma.nix
./pihole.nix
2024-04-03 17:54:07 +02:00
./dcbot.nix
./saveyoursoul.nix
2023-10-20 23:28:59 +02:00
];
2024-03-11 16:19:31 +01:00
services.adguardhome.enable = true;
2023-10-20 23:28:59 +02:00
2024-03-11 16:19:31 +01:00
valkyrieService.pihole.enable = false;
valkyrieService.pleroma.enable = true;
2024-04-03 17:54:07 +02:00
valkyrieService.dcbot.enable = true;
valkyrieService.saveyoursoul.enable = true;
2023-10-20 23:28:59 +02:00
2024-03-11 16:19:31 +01:00
}