mirror of
https://github.com/Ahwxorg/nixos-config.git
synced 2025-12-04 23:00:14 +01:00
13 lines
236 B
Nix
13 lines
236 B
Nix
|
|
{ config, lib, ... }:
|
||
|
|
{
|
||
|
|
users.users.nginx.extraGroups = [ config.users.groups.anubis.name ];
|
||
|
|
services.anubis = {
|
||
|
|
defaultOptions = {
|
||
|
|
enable = true;
|
||
|
|
settings = {
|
||
|
|
SERVE_ROBOTS_TXT = true;
|
||
|
|
};
|
||
|
|
};
|
||
|
|
};
|
||
|
|
}
|