fix: expected list, not derivation in symlinkJoin paths
This commit is contained in:
@@ -31,7 +31,7 @@
|
||||
selection-foreground = ${colors.base07}
|
||||
'';
|
||||
drv = symlinkJoin ({
|
||||
paths = ghostty;
|
||||
paths = [ghostty];
|
||||
|
||||
nativeBuildInputs = [makeWrapper];
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
git ? pkgs.git,
|
||||
}: let
|
||||
drv = symlinkJoin ({
|
||||
paths = git;
|
||||
paths = [git];
|
||||
|
||||
nativeBuildInputs = [makeWrapper];
|
||||
|
||||
|
||||
@@ -27,7 +27,7 @@
|
||||
// settings));
|
||||
|
||||
drv = symlinkJoin ({
|
||||
paths = lazygit;
|
||||
paths = [lazygit];
|
||||
|
||||
nativeBuildInputs = [makeWrapper];
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
starship ? pkgs.starship,
|
||||
}: let
|
||||
drv = symlinkJoin ({
|
||||
paths = starship;
|
||||
paths = [starship];
|
||||
|
||||
nativeBuildInputs = [makeWrapper];
|
||||
|
||||
|
||||
@@ -47,7 +47,7 @@
|
||||
'';
|
||||
|
||||
drv = symlinkJoin ({
|
||||
paths = tmux;
|
||||
paths = [tmux];
|
||||
|
||||
nativeBuildInputs = [makeWrapper];
|
||||
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
yazi ? pkgs.yazi,
|
||||
}: let
|
||||
drv = symlinkJoin ({
|
||||
paths = yazi;
|
||||
paths = [yazi];
|
||||
|
||||
nativeBuildInputs = [makeWrapper];
|
||||
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
'';
|
||||
|
||||
drv = symlinkJoin ({
|
||||
paths = zellij;
|
||||
paths = [zellij];
|
||||
|
||||
nativeBuildInputs = [makeWrapper];
|
||||
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
zshrc-append-file = pkgs.writeText ".zshrc_append" zshrc-append;
|
||||
|
||||
drv = symlinkJoin ({
|
||||
paths = zsh;
|
||||
paths = [zsh];
|
||||
|
||||
nativeBuildInputs = [makeWrapper];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user