We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e049a6 commit 3936825Copy full SHA for 3936825
flake.nix
@@ -35,7 +35,9 @@
35
systems = [
36
# keep-sorted start
37
"aarch64-darwin"
38
+ "aarch64-linux"
39
"x86_64-darwin"
40
+ "x86_64-linux"
41
# keep-sorted end
42
];
43
perSystem =
@@ -87,7 +89,7 @@
87
89
inherit (inputs) nixpkgs flake-parts nix-unit;
88
90
};
91
tests = {
- "test example" = {
92
+ "test example system-specific" = {
93
expr = "1";
94
expected = "1";
95
@@ -105,6 +107,12 @@
105
107
'';
106
108
109
110
+ tests = {
111
+ "test example system-agnostic" = {
112
+ expr = "2";
113
+ expected = "2";
114
+ };
115
116
117
118
}
0 commit comments