From af1153180199fe569128a4c1853154ece88620f7 Mon Sep 17 00:00:00 2001 From: Svein Ove Aas Date: Sun, 23 Nov 2025 17:43:44 +0000 Subject: [PATCH] nixos/oh-my-zsh: Fix pathsToLink type error --- nixos/modules/programs/zsh/oh-my-zsh.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/modules/programs/zsh/oh-my-zsh.nix b/nixos/modules/programs/zsh/oh-my-zsh.nix index 77e5a5f18f02..cd9729a22ad6 100644 --- a/nixos/modules/programs/zsh/oh-my-zsh.nix +++ b/nixos/modules/programs/zsh/oh-my-zsh.nix @@ -15,7 +15,7 @@ let env = pkgs.buildEnv { name = "zsh-${name}-env"; paths = cfg.customPkgs; - pathsToLink = "/share/zsh/${dir}"; + pathsToLink = [ "/share/zsh/${dir}" ]; }; in {