From 2021283b4c43649e62b4565b73f2bf4eacd4427a Mon Sep 17 00:00:00 2001 From: Infinidoge Date: Wed, 22 Jun 2022 16:58:07 -0400 Subject: [PATCH] fix(general): remove nix channels update service --- modules/global/general.nix | 7 ------- 1 file changed, 7 deletions(-) diff --git a/modules/global/general.nix b/modules/global/general.nix index 6ae0164..025242b 100644 --- a/modules/global/general.nix +++ b/modules/global/general.nix @@ -24,11 +24,4 @@ # FIX: command-not-found database doesn't exist normally channels-update.text = "${pkgs.nix}/bin/nix-channel --update"; }; - systemd.services.update-root-nix-channels = { - description = "Runs nix-channel --update on startup"; - wantedBy = [ "multi-user.target" ]; - after = [ "network.target" ]; - serviceConfig.Type = "oneshot"; - script = "${pkgs.nix}/bin/nix-channel --update"; - }; }