summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorSoispha <soispha@vhack.eu>2023-06-25 20:11:37 +0200
committerSoispha <soispha@vhack.eu>2023-06-25 20:11:37 +0200
commit74a735b09f8e8894a30555fed61b0b4a65cea28b (patch)
treed3dedd6927e71a541429d6ce747e144d34ec6a66
parentFix(system/services/nginx): Actually enable git-sync (diff)
downloadnixos-server-74a735b09f8e8894a30555fed61b0b4a65cea28b.tar.gz
nixos-server-74a735b09f8e8894a30555fed61b0b4a65cea28b.zip
Fix(system/services/git-sync): Purge assertion, as we're always on linux
-rw-r--r--system/services/git-sync/default.nix5
1 files changed, 0 insertions, 5 deletions
diff --git a/system/services/git-sync/default.nix b/system/services/git-sync/default.nix
index 776ca60..c1b34ba 100644
--- a/system/services/git-sync/default.nix
+++ b/system/services/git-sync/default.nix
@@ -94,11 +94,6 @@ in {
   };
 
   config = lib.mkIf cfg.enable {
-    assertions = [
-      (lib.hm.assertions.assertPlatform "services.git-sync" pkgs
-        lib.platforms.linux)
-    ];
-
     systemd.user.services = services;
   };
 }