From 891dfd766e59e089eff2f4b51601b06ced26eec3 Mon Sep 17 00:00:00 2001 From: Dmitriy Kholkin Date: Wed, 24 May 2023 21:31:06 +0300 Subject: [PATCH] disable some systemd services --- profiles/applications/packages.nix | 16 ++++++++-------- profiles/workspace/nix-index.nix | 16 ++++++++-------- 2 files changed, 16 insertions(+), 16 deletions(-) diff --git a/profiles/applications/packages.nix b/profiles/applications/packages.nix index bcf8815..818ddc6 100644 --- a/profiles/applications/packages.nix +++ b/profiles/applications/packages.nix @@ -86,14 +86,14 @@ with config.deviceSpecific; { winetricks ]; - systemd.user.services.tealdeer-update = { - Service = { - ExecStart = "${pkgs.tealdeer}/bin/tldr --update"; - Type = "oneshot"; - }; - Unit.After = [ "network.target" ]; - Install.WantedBy = [ "default.target" ]; - }; + # systemd.user.services.tealdeer-update = { + # Service = { + # ExecStart = "${pkgs.tealdeer}/bin/tldr --update"; + # Type = "oneshot"; + # }; + # Unit.After = [ "network.target" ]; + # Install.WantedBy = [ "default.target" ]; + # }; }; persist.state.homeDirectories = [ diff --git a/profiles/workspace/nix-index.nix b/profiles/workspace/nix-index.nix index 2bb71fd..07a35be 100644 --- a/profiles/workspace/nix-index.nix +++ b/profiles/workspace/nix-index.nix @@ -9,14 +9,14 @@ pkgs.nix-index-update ]; - systemd.user.services.nix-index-update = { - Service = { - ExecStart = lib.getExe pkgs.nix-index-update; - Type = "oneshot"; - }; - Unit.After = [ "network.target" ]; - Install.WantedBy = [ "default.target" ]; - }; + # systemd.user.services.nix-index-update = { + # Service = { + # ExecStart = lib.getExe pkgs.nix-index-update; + # Type = "oneshot"; + # }; + # Unit.After = [ "network.target" ]; + # Install.WantedBy = [ "default.target" ]; + # }; }; programs.command-not-found.enable = lib.mkForce false;