summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2017-10-30 14:35:48 +0100
committerGregor Kleen <gkleen@yggdrasil.li>2017-10-30 14:35:48 +0100
commit534f926872154ff6428cdb2343bbf4e240c8e9c4 (patch)
tree7bc7fd5c9413155cbed33a120db469a81e95ab9b
parent49326dd46f42cf4d41ee2c50e5b92bbccb3a4ad4 (diff)
downloadnixos-534f926872154ff6428cdb2343bbf4e240c8e9c4.tar
nixos-534f926872154ff6428cdb2343bbf4e240c8e9c4.tar.gz
nixos-534f926872154ff6428cdb2343bbf4e240c8e9c4.tar.bz2
nixos-534f926872154ff6428cdb2343bbf4e240c8e9c4.tar.xz
nixos-534f926872154ff6428cdb2343bbf4e240c8e9c4.zip
-rw-r--r--hel.nix5
1 files changed, 4 insertions, 1 deletions
diff --git a/hel.nix b/hel.nix
index 25720b73..e823ccce 100644
--- a/hel.nix
+++ b/hel.nix
@@ -166,7 +166,8 @@
166 chrony = { 166 chrony = {
167 enable = true; 167 enable = true;
168 extraConfig = '' 168 extraConfig = ''
169 refclock SOCK /var/run/chrony.gps0.sock delay 0.0 refid GPS 169 refclock SHM 0 refid GPS
170 refclock SHM 1 refid PPS
170 ''; 171 '';
171 }; 172 };
172 173
@@ -290,6 +291,8 @@
290 }; 291 };
291 }; 292 };
292 293
294 systemd.services."gpsd".after = [ "chronyd.service" ];
295
293 users = { 296 users = {
294 mutableUsers = false; 297 mutableUsers = false;
295 298