File tree Expand file tree Collapse file tree 7 files changed +0
-37
lines changed Expand file tree Collapse file tree 7 files changed +0
-37
lines changed Original file line number Diff line number Diff line change @@ -21,12 +21,8 @@ cat > "$tmpDir/configuration.nix" <<EOF
21
21
password = "a";
22
22
};
23
23
# When WAN is disabled, DNS bootstrapping slows down service startup by ~15 s
24
- # TODO-EXTERNAL:
25
- # When bitcoind is not fully synced, the offers plugin in clightning 24.05
26
- # crashes (see https://github.com/ElementsProject/lightning/issues/7378).
27
24
services.clightning.extraConfig = ''
28
25
disable-dns
29
- disable-plugin=offers
30
26
'';
31
27
}
32
28
EOF
Original file line number Diff line number Diff line change @@ -83,13 +83,6 @@ read -rd '' src <<EOF || true
83
83
$( realpath " $configuration " )
84
84
];
85
85
nix-bitcoin.generateSecrets = true;
86
-
87
- # TODO-EXTERNAL:
88
- # When bitcoind is not fully synced, the offers plugin in clightning 24.05
89
- # crashes (see https://github.com/ElementsProject/lightning/issues/7378).
90
- services.clightning.extraConfig = ''
91
- disable-plugin=offers
92
- '';
93
86
};
94
87
};
95
88
}
Original file line number Diff line number Diff line change @@ -30,13 +30,6 @@ nix-build --out-link "$tmpDir/vm" - <<'EOF'
30
30
<qemu-vm/vm-config.nix>
31
31
];
32
32
nix-bitcoin.generateSecrets = true;
33
-
34
- # TODO-EXTERNAL:
35
- # When bitcoind is not fully synced, the offers plugin in clightning 24.05
36
- # crashes (see https://github.com/ElementsProject/lightning/issues/7378).
37
- services.clightning.extraConfig = ''
38
- disable-plugin=offers
39
- '';
40
33
};
41
34
}).config.system.build.vm
42
35
EOF
Original file line number Diff line number Diff line change 4
4
<nix-bitcoin/modules/deployment/krops.nix>
5
5
<qemu-vm/vm-config.nix>
6
6
] ;
7
-
8
- # TODO-EXTERNAL:
9
- # When bitcoind is not fully synced, the offers plugin in clightning 24.05
10
- # crashes (see https://github.com/ElementsProject/lightning/issues/7378).
11
- services . clightning . extraConfig = ''
12
- disable-plugin=offers
13
- '' ;
14
7
}
Original file line number Diff line number Diff line change 27
27
nix-bitcoin . generateSecrets = true ;
28
28
services . clightning . enable = true ;
29
29
# disable-dns leads to faster startup in offline VMs
30
- # TODO-EXTERNAL:
31
- # When bitcoind is not fully synced, the offers plugin in clightning 24.05
32
- # crashes (see https://github.com/ElementsProject/lightning/issues/7378).
33
30
services . clightning . extraConfig = ''
34
31
disable-dns
35
- disable-plugin=offers
36
32
'' ;
37
33
38
34
# Avoid lengthy build of the nixos manual
Original file line number Diff line number Diff line change 24
24
25
25
# TODO-EXTERNAL:
26
26
# When WAN is disabled, DNS bootstrapping slows down service startup by ~15 s.
27
- # TODO-EXTERNAL:
28
- # When bitcoind is not fully synced, the offers plugin in clightning 24.05
29
- # crashes (see https://github.com/ElementsProject/lightning/issues/7378).
30
27
extraConfig = ''
31
28
disable-dns
32
- disable-plugin=offers
33
29
'' ;
34
30
} ;
35
31
} ;
Original file line number Diff line number Diff line change 43
43
44
44
# TODO-EXTERNAL:
45
45
# When WAN is disabled, DNS bootstrapping slows down service startup by ~15 s.
46
- # TODO-EXTERNAL:
47
- # When bitcoind is not fully synced, the offers plugin in clightning 24.05
48
- # crashes (see https://github.com/ElementsProject/lightning/issues/7378).
49
46
services . clightning . extraConfig = ''
50
47
${ optionalString config . test . noConnections "disable-dns" }
51
- disable-plugin=offers
52
48
'' ;
53
49
test . data . clightning-plugins = let
54
50
plugins = config . services . clightning . plugins ;
You can’t perform that action at this time.
0 commit comments