fix: Remove |> operator to fix ci
This commit is contained in:
parent
3b570cc47a
commit
6a7b5838bc
13 changed files with 167 additions and 122 deletions
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
perSystem =
|
||||
{ pkgs, ... }:
|
||||
{ pkgs, lib, ... }:
|
||||
{
|
||||
treefmt = {
|
||||
programs = {
|
||||
|
|
@ -41,7 +41,12 @@
|
|||
};
|
||||
typos =
|
||||
let
|
||||
config = ./.typos.toml |> builtins.readFile |> builtins.fromTOML;
|
||||
config =
|
||||
with lib;
|
||||
pipe ./.typos.toml [
|
||||
builtins.readFile
|
||||
builtins.fromTOML
|
||||
];
|
||||
in
|
||||
{
|
||||
enable = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue