15 lines
238 B
Nix
15 lines
238 B
Nix
|
{ config, pkgs, materusFlake, ... }:
|
||
|
{
|
||
|
imports =
|
||
|
[
|
||
|
./pleroma.nix
|
||
|
./pihole.nix
|
||
|
];
|
||
|
services.adguardhome.enable = false;
|
||
|
|
||
|
valkyrieService.pihole.enable = true;
|
||
|
valkyrieService.pleroma.enable = true;
|
||
|
|
||
|
|
||
|
|
||
|
}
|