fix(general): remove nix channels update service

This commit is contained in:
Infinidoge 2022-06-22 16:58:07 -04:00
parent eb42333afb
commit 2021283b4c

View file

@ -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";
};
}