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}
'';
drv = symlinkJoin ({
paths = ghostty;
paths = [ghostty];
nativeBuildInputs = [makeWrapper];

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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