diff --git a/flake.lock b/flake.lock
index f5d0a24..207bdc2 100644
--- a/flake.lock
+++ b/flake.lock
@@ -55,27 +55,6 @@
         "type": "github"
       }
     },
-    "comin": {
-      "inputs": {
-        "nixpkgs": [
-          "nixpkgs"
-        ]
-      },
-      "locked": {
-        "lastModified": 1714766748,
-        "narHash": "sha256-//fP25eh1f9eA+0TEgWqusWjv9SuKh8rIF1ZJQNL1jo=",
-        "owner": "nlewo",
-        "repo": "comin",
-        "rev": "d3658c452024824235de2355ac3e156b10c3eaaf",
-        "type": "github"
-      },
-      "original": {
-        "owner": "nlewo",
-        "repo": "comin",
-        "rev": "d3658c452024824235de2355ac3e156b10c3eaaf",
-        "type": "github"
-      }
-    },
     "disko": {
       "inputs": {
         "nixpkgs": [
@@ -315,7 +294,6 @@
       "inputs": {
         "agenix": "agenix",
         "buildbot-nix": "buildbot-nix",
-        "comin": "comin",
         "disko": "disko",
         "empty": "empty",
         "flake-compat": "flake-compat",
diff --git a/flake.nix b/flake.nix
index fa4800f..4e34e3c 100644
--- a/flake.nix
+++ b/flake.nix
@@ -16,8 +16,6 @@
     buildbot-nix.inputs.nixpkgs.follows = "nixpkgs";
     buildbot-nix.inputs.treefmt-nix.follows = "treefmt-nix";
     buildbot-nix.url = "github:nix-community/buildbot-nix";
-    comin.inputs.nixpkgs.follows = "nixpkgs";
-    comin.url = "github:nlewo/comin/d3658c452024824235de2355ac3e156b10c3eaaf";
     disko.inputs.nixpkgs.follows = "nixpkgs";
     disko.url = "github:nix-community/disko";
     empty.url = "github:nix-systems/empty";
diff --git a/modules/nixos/common/comin.nix b/modules/nixos/common/comin.nix
deleted file mode 100644
index 197011d..0000000
--- a/modules/nixos/common/comin.nix
+++ /dev/null
@@ -1,17 +0,0 @@
-{ inputs, ... }:
-{
-  imports = [ inputs.comin.nixosModules.comin ];
-
-  services.comin = {
-    enable = true;
-    remotes = [
-      {
-        url = "https://github.com/nix-community/infra.git";
-        name = "origin";
-        poller.period = 300; # every 5 minutes
-        branches.main.name = "master";
-        branches.testing.name = ""; # disable testing branch
-      }
-    ];
-  };
-}
diff --git a/modules/nixos/common/default.nix b/modules/nixos/common/default.nix
index c79f0f3..c6a3b41 100644
--- a/modules/nixos/common/default.nix
+++ b/modules/nixos/common/default.nix
@@ -6,7 +6,6 @@
 }:
 {
   imports = [
-    ./comin.nix
     ../../shared/known-hosts.nix
     ../../shared/nix-daemon.nix
     ./reboot.nix