summary refs log tree commit diff
path: root/nixos/modules/services/networking/ntp
diff options
context:
space:
mode:
authorAustin Seipp <aseipp@pobox.com>2018-12-01 12:55:31 -0600
committerAustin Seipp <aseipp@pobox.com>2019-09-12 11:45:51 -0500
commitf0ad5ebdfb545cafd1df1c4c9b0d19f6bdec23ae (patch)
tree1b6fda9f21e4fb42a6c59625462238e28b4790d3 /nixos/modules/services/networking/ntp
parenta61e94329fd1698e31ffb798b7ed50e882249d49 (diff)
downloadnixpkgs-f0ad5ebdfb545cafd1df1c4c9b0d19f6bdec23ae.tar
nixpkgs-f0ad5ebdfb545cafd1df1c4c9b0d19f6bdec23ae.tar.gz
nixpkgs-f0ad5ebdfb545cafd1df1c4c9b0d19f6bdec23ae.tar.bz2
nixpkgs-f0ad5ebdfb545cafd1df1c4c9b0d19f6bdec23ae.tar.lz
nixpkgs-f0ad5ebdfb545cafd1df1c4c9b0d19f6bdec23ae.tar.xz
nixpkgs-f0ad5ebdfb545cafd1df1c4c9b0d19f6bdec23ae.tar.zst
nixpkgs-f0ad5ebdfb545cafd1df1c4c9b0d19f6bdec23ae.zip
nixos/{chrony,ntpd,openntpd}: add myself as maintainer
Signed-off-by: Austin Seipp <aseipp@pobox.com>
Diffstat (limited to 'nixos/modules/services/networking/ntp')
-rw-r--r--nixos/modules/services/networking/ntp/chrony.nix2
-rw-r--r--nixos/modules/services/networking/ntp/ntpd.nix1
-rw-r--r--nixos/modules/services/networking/ntp/openntpd.nix1
3 files changed, 4 insertions, 0 deletions
diff --git a/nixos/modules/services/networking/ntp/chrony.nix b/nixos/modules/services/networking/ntp/chrony.nix
index 77f70257700..4736069fd37 100644
--- a/nixos/modules/services/networking/ntp/chrony.nix
+++ b/nixos/modules/services/networking/ntp/chrony.nix
@@ -76,6 +76,8 @@ in
   };
 
   config = mkIf cfg.enable {
+    meta.maintainers = with lib.maintainers; [ thoughtpolice ];
+
     environment.systemPackages = [ pkgs.chrony ];
 
     users.groups = singleton
diff --git a/nixos/modules/services/networking/ntp/ntpd.nix b/nixos/modules/services/networking/ntp/ntpd.nix
index 588d1c6edb0..1197c84f045 100644
--- a/nixos/modules/services/networking/ntp/ntpd.nix
+++ b/nixos/modules/services/networking/ntp/ntpd.nix
@@ -96,6 +96,7 @@ in
   ###### implementation
 
   config = mkIf config.services.ntp.enable {
+    meta.maintainers = with lib.maintainers; [ thoughtpolice ];
 
     # Make tools such as ntpq available in the system path.
     environment.systemPackages = [ pkgs.ntp ];
diff --git a/nixos/modules/services/networking/ntp/openntpd.nix b/nixos/modules/services/networking/ntp/openntpd.nix
index f3920aa8064..471d15b1687 100644
--- a/nixos/modules/services/networking/ntp/openntpd.nix
+++ b/nixos/modules/services/networking/ntp/openntpd.nix
@@ -52,6 +52,7 @@ in
   ###### implementation
 
   config = mkIf cfg.enable {
+    meta.maintainers = with lib.maintainers; [ thoughtpolice ];
     services.timesyncd.enable = mkForce false;
 
     # Add ntpctl to the environment for status checking