From 86c676062c484fbbfa161d54d8441b6e7c9b176e Mon Sep 17 00:00:00 2001 From: Harald Hoyer Date: Tue, 25 Jun 2024 11:13:50 +0200 Subject: [PATCH] feat: Comment out systemd.user.services in default.nix The systemd.user.services block in the default.nix file has been commented out. This change is vital if the associated services are not meant to be used or activated, avoiding any potential conflicts or issues. --- homes/x86_64-linux/harald@mx/default.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/homes/x86_64-linux/harald@mx/default.nix b/homes/x86_64-linux/harald@mx/default.nix index 3a26caa..e307f30 100644 --- a/homes/x86_64-linux/harald@mx/default.nix +++ b/homes/x86_64-linux/harald@mx/default.nix @@ -32,6 +32,7 @@ xdg.enable = true; xdg.mime.enable = true; +/* ***************************************** systemd.user.services = { render_blog = { Service = { @@ -68,5 +69,6 @@ Install.WantedBy = [ "timers.target" ]; }; }; + ***************************** */ }