Skip to content

Commit c2f370c

Browse files
committed
Remove pipe-operators
1 parent 5f3adbf commit c2f370c

File tree

2 files changed

+6
-12
lines changed

2 files changed

+6
-12
lines changed

.github/workflows/nix.yml

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v4
1616
- uses: DeterminateSystems/nix-installer-action@main
17-
with:
18-
extra-conf: |
19-
experimental-features = nix-command flakes pipe-operators
2017
- uses: cachix/cachix-action@v15
2118
with:
2219
name: polkanix
@@ -38,9 +35,6 @@ jobs:
3835
steps:
3936
- uses: actions/checkout@v4
4037
- uses: DeterminateSystems/nix-installer-action@main
41-
with:
42-
extra-conf: |
43-
experimental-features = nix-command flakes pipe-operators
4438
- uses: cachix/cachix-action@v15
4539
with:
4640
name: polkanix

flake.nix

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,12 +60,12 @@
6060
{
6161
systems = ["x86_64-linux"];
6262

63-
imports =
64-
lib.filesystem.listFilesRecursive ./.
65-
|> lib.map builtins.toString
66-
|> lib.filter (lib.hasSuffix ".nix")
67-
|> lib.filter (f: !lib.hasSuffix "flake.nix" f)
68-
|> lib.filter (f: !lib.hasInfix "/_" f);
63+
imports = lib.pipe (lib.filesystem.listFilesRecursive ./.) [
64+
(lib.map builtins.toString)
65+
(lib.filter (lib.hasSuffix ".nix"))
66+
(lib.filter (f: !lib.hasSuffix "flake.nix" f))
67+
(lib.filter (f: !lib.hasInfix "/_" f))
68+
];
6969

7070
_module.args.rootPath = ./.;
7171
}

0 commit comments

Comments
 (0)