feat: Remove |> op from config to disable pipe-operator feature
This commit is contained in:
parent
b418f7ca4b
commit
0bdc1f142c
12 changed files with 167 additions and 121 deletions
|
|
@ -7,9 +7,10 @@
|
|||
let
|
||||
wallpapers =
|
||||
with lib;
|
||||
srcs
|
||||
|> filterAttrs (name: _value: hasPrefix "wallpaper" name)
|
||||
|> concatMapAttrsStringSep "\n" (name: value: "ln -s ${value.src} $out/${name}");
|
||||
pipe srcs [
|
||||
(filterAttrs (name: _value: hasPrefix "wallpaper" name))
|
||||
(concatMapAttrsStringSep "\n" (name: value: "ln -s ${value.src} $out/${name}"))
|
||||
];
|
||||
in
|
||||
runCommandLocal "wallpapers" { } ''
|
||||
mkdir -p $out
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue