13 lines
286 B
Nix
13 lines
286 B
Nix
|
{ config, mylib, ... }:
|
||
|
{
|
||
|
services.vnstat.enable = true;
|
||
|
|
||
|
environment.etc."vnstat.conf".text = ''
|
||
|
UseUTC 1
|
||
|
'';
|
||
|
|
||
|
systemd.services.vnstat.restartTriggers = [ config.environment.etc."vnstat.conf".text ];
|
||
|
|
||
|
systemd.services.vnstat.serviceConfig = mylib.misc.serviceHardened;
|
||
|
}
|