Skip to content

Commit

Permalink
nixosTests/sunset: init
Browse files Browse the repository at this point in the history
  • Loading branch information
sinanmohd committed Aug 11, 2024
1 parent 5152832 commit 89ac91f
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions nixos/tests/all-tests.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,45 @@ let
nodes.d.inputs.b = { }; # d->b
nodes.d.inputs.c = { }; # d->c
};

# A B C D E
# \ | / | |
# U V W X
sunset.dag = {
nodes = let
abcInputs = {

This comment has been minimized.

Copy link
@SomeoneSerge

SomeoneSerge Aug 11, 2024

Collaborator

Let's use nixfmt-rfc-style

u = {};
v = {};
};
in {
a = {
request = true;
inputs = abcInputs;
};
b = {
request = true;
inputs = abcInputs;
};
c = {
request = true;
inputs = abcInputs;
};

d = {
request = true;
inputs.w = {};
};
e = {
request = true;
inputs.x = {};
};

u = {};
v = {};
w = {};
x = {};
};
};
in
builtins.mapAttrs
(
Expand Down

0 comments on commit 89ac91f

Please sign in to comment.