fix: expected list, not derivation in symlinkJoin paths

This commit is contained in:
Guz
2025-06-02 15:44:35 -03:00
parent e6d4a1acc9
commit 6d9ffeb54f
8 changed files with 8 additions and 8 deletions

View File

@@ -31,7 +31,7 @@
selection-foreground = ${colors.base07} selection-foreground = ${colors.base07}
''; '';
drv = symlinkJoin ({ drv = symlinkJoin ({
paths = ghostty; paths = [ghostty];
nativeBuildInputs = [makeWrapper]; nativeBuildInputs = [makeWrapper];

View File

@@ -6,7 +6,7 @@
git ? pkgs.git, git ? pkgs.git,
}: let }: let
drv = symlinkJoin ({ drv = symlinkJoin ({
paths = git; paths = [git];
nativeBuildInputs = [makeWrapper]; nativeBuildInputs = [makeWrapper];

View File

@@ -27,7 +27,7 @@
// settings)); // settings));
drv = symlinkJoin ({ drv = symlinkJoin ({
paths = lazygit; paths = [lazygit];
nativeBuildInputs = [makeWrapper]; nativeBuildInputs = [makeWrapper];

View File

@@ -6,7 +6,7 @@
starship ? pkgs.starship, starship ? pkgs.starship,
}: let }: let
drv = symlinkJoin ({ drv = symlinkJoin ({
paths = starship; paths = [starship];
nativeBuildInputs = [makeWrapper]; nativeBuildInputs = [makeWrapper];

View File

@@ -47,7 +47,7 @@
''; '';
drv = symlinkJoin ({ drv = symlinkJoin ({
paths = tmux; paths = [tmux];
nativeBuildInputs = [makeWrapper]; nativeBuildInputs = [makeWrapper];

View File

@@ -6,7 +6,7 @@
yazi ? pkgs.yazi, yazi ? pkgs.yazi,
}: let }: let
drv = symlinkJoin ({ drv = symlinkJoin ({
paths = yazi; paths = [yazi];
nativeBuildInputs = [makeWrapper]; nativeBuildInputs = [makeWrapper];

View File

@@ -49,7 +49,7 @@
''; '';
drv = symlinkJoin ({ drv = symlinkJoin ({
paths = zellij; paths = [zellij];
nativeBuildInputs = [makeWrapper]; nativeBuildInputs = [makeWrapper];

View File

@@ -15,7 +15,7 @@
zshrc-append-file = pkgs.writeText ".zshrc_append" zshrc-append; zshrc-append-file = pkgs.writeText ".zshrc_append" zshrc-append;
drv = symlinkJoin ({ drv = symlinkJoin ({
paths = zsh; paths = [zsh];
nativeBuildInputs = [makeWrapper]; nativeBuildInputs = [makeWrapper];