-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
According to the current working document for the formatting RFC (https://github.com/nix-rfc-101/rfcs/blob/master/rfcs/0101-nix-formatting.md) alejandra will not be used ase the base for the common formatter. But alejandra is the formatter that produces the most similar output to the one proposed by the RFC right now.
- Loading branch information
Showing
17 changed files
with
641 additions
and
571 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,30 +1,24 @@ | ||
system: | ||
flakes@{ nixpkgs, ... }: | ||
system: flakes @ {nixpkgs, ...}: let | ||
lib = nixpkgs.lib.extend (import ./utils.nix system nixpkgs) // {inherit flakes;}; | ||
in | ||
with lib; { | ||
tests = run-tests { | ||
testChains = import ./testChains.nix lib; | ||
|
||
let | ||
testEmpty = import ./testEmpty.nix lib; | ||
|
||
lib = nixpkgs.lib.extend (import ./utils.nix system nixpkgs) // { inherit flakes; }; | ||
testZoneExpressions = import ./testZoneExpressions.nix lib; | ||
|
||
in with lib; { | ||
tests = run-tests { | ||
testWebserver = import ./testWebserver.nix lib; | ||
|
||
testChains = import ./testChains.nix lib; | ||
testForward = import ./testForward.nix lib; | ||
|
||
testEmpty = import ./testEmpty.nix lib; | ||
testNat = import ./testNat.nix lib; | ||
|
||
testZoneExpressions = import ./testZoneExpressions.nix lib; | ||
testPortRules = import ./testPortRules.nix lib; | ||
|
||
testWebserver = import ./testWebserver.nix lib; | ||
testInheritance = import ./testInheritance.nix lib; | ||
|
||
testForward = import ./testForward.nix lib; | ||
|
||
testNat = import ./testNat.nix lib; | ||
|
||
testPortRules = import ./testPortRules.nix lib; | ||
|
||
testInheritance = import ./testInheritance.nix lib; | ||
|
||
testRuleType = import ./testRuleType.nix lib; | ||
|
||
}; | ||
} | ||
testRuleType = import ./testRuleType.nix lib; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.