From 27390b8c4fecd8b07d522f020c1e9776e50404ba Mon Sep 17 00:00:00 2001 From: Tigor Hutasuhut Date: Sun, 24 Nov 2024 20:18:35 +0700 Subject: [PATCH 1/2] zsh: auto-complete now uses not crashing version --- home/programs/zsh.nix | 17 ++++++++++++++++- 1 file changed, 16 insertions(+), 1 deletion(-) diff --git a/home/programs/zsh.nix b/home/programs/zsh.nix index 9608422..2b984e3 100644 --- a/home/programs/zsh.nix +++ b/home/programs/zsh.nix @@ -154,7 +154,22 @@ in } { name = "zsh-autocomplete"; - src = pkgs.zsh-autocomplete; + src = pkgs.zsh-autocomplete.overrideAttrs (old: rec { + version = "23.05.24"; + src = pkgs.fetchFromGitHub { + owner = "marlonrichert"; + repo = "zsh-autocomplete"; + rev = version; + sha256 = "sha256-/6V6IHwB5p0GT1u5SAiUa20LjFDSrMo731jFBq/bnpw="; + }; + installPhase = '' + ls -la + mkdir -p $out/share/zsh-autocomplete + install -D zsh-autocomplete.plugin.zsh $out/share/zsh-autocomplete/zsh-autocomplete.plugin.zsh + cp -R functions $out/share/zsh-autocomplete/functions + cp -R scripts $out/share/zsh-autocomplete/scripts + ''; + }); file = "share/zsh-autocomplete/zsh-autocomplete.plugin.zsh"; } # { From ff495623fffc4eb6b1690571473d08d88273d46b Mon Sep 17 00:00:00 2001 From: Tigor Hutasuhut Date: Sun, 24 Nov 2024 20:20:41 +0700 Subject: [PATCH 2/2] homeserver: disabled unused services --- profiles/homeserver.nix | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/profiles/homeserver.nix b/profiles/homeserver.nix index 939e1da..97306cb 100644 --- a/profiles/homeserver.nix +++ b/profiles/homeserver.nix @@ -37,12 +37,12 @@ servarr.recyclarr.enable = true; servarr.real-debrid-manager.enable = false; servarr.rdtclient.enable = true; - openobserve.enable = true; + openobserve.enable = false; minecraft.enable = false; memos.enable = true; morphos.enable = true; soulseek.enable = true; - valheim.enable = true; + valheim.enable = false; }; home.programs.zellij = { @@ -70,7 +70,7 @@ telemetry.enable = true; ntfy-sh.enable = true; ntfy-sh.client.enable = false; - couchdb.enable = true; + couchdb.enable = false; technitium.enable = false; }; };