agares: use as router

This commit is contained in:
Tim Schubert 2023-10-14 14:01:06 +02:00 committed by Tim Schubert
parent 572d813eed
commit 21add79ffa
13 changed files with 640 additions and 76 deletions

12
nixos/agares/ntp.nix Normal file
View file

@ -0,0 +1,12 @@
{ ... }:
{
services.chrony = {
enable = true;
extraConfig = ''
allow 192.168.1
allow 192.168.100
allow 192.168.101
allow 192.168.102
'';
};
}