File tree Expand file tree Collapse file tree 2 files changed +6
-12
lines changed
Expand file tree Collapse file tree 2 files changed +6
-12
lines changed Original file line number Diff line number Diff line change 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
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
Original file line number Diff line number Diff line change 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 }
You can’t perform that action at this time.
0 commit comments