summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorWilliam A. Kennington III <william@wkennington.com>2015-01-18 14:21:40 -0800
committerWilliam A. Kennington III <william@wkennington.com>2015-01-18 14:21:40 -0800
commit130f66b683d37a0f636e6c8283873011b196eeac (patch)
tree99eb1fcbc179164eda9d4ecf78451e37a25c1f01 /nixos
parentcfce8509b85281a967a5937f3f0c672125990474 (diff)
downloadnixlib-130f66b683d37a0f636e6c8283873011b196eeac.tar
nixlib-130f66b683d37a0f636e6c8283873011b196eeac.tar.gz
nixlib-130f66b683d37a0f636e6c8283873011b196eeac.tar.bz2
nixlib-130f66b683d37a0f636e6c8283873011b196eeac.tar.lz
nixlib-130f66b683d37a0f636e6c8283873011b196eeac.tar.xz
nixlib-130f66b683d37a0f636e6c8283873011b196eeac.tar.zst
nixlib-130f66b683d37a0f636e6c8283873011b196eeac.zip
nixos/sync-server: Respect the enable option
Diffstat (limited to 'nixos')
-rw-r--r--nixos/modules/services/networking/firefox/sync-server.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/networking/firefox/sync-server.nix b/nixos/modules/services/networking/firefox/sync-server.nix
index 6ed7a6beb9e8..79f32f3358cb 100644
--- a/nixos/modules/services/networking/firefox/sync-server.nix
+++ b/nixos/modules/services/networking/firefox/sync-server.nix
@@ -119,7 +119,7 @@ in
     };
   };
 
-  config = {
+  config = mkIf cfg.enable {
 
     systemd.services.syncserver = {
       after = [ "network.target" ];