diff options
author | Alan Pearce | 2019-09-16 11:28:56 +0200 |
---|---|---|
committer | Alan Pearce | 2019-09-16 11:28:56 +0200 |
commit | bbb34d3b326b95947e008a644224e9e57b445785 (patch) | |
tree | 6c73c95498c6f319d5dbf8d810c6e23074a06ed3 | |
parent | 81326cdc165be722fbf7cba2554ed67b5cea4658 (diff) | |
download | nixos-configuration-bbb34d3b326b95947e008a644224e9e57b445785.tar.lz nixos-configuration-bbb34d3b326b95947e008a644224e9e57b445785.tar.zst nixos-configuration-bbb34d3b326b95947e008a644224e9e57b445785.zip |
satoshipay: fix docker config syntax
-rw-r--r-- | modules/satoshipay.nix | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/satoshipay.nix b/modules/satoshipay.nix index fa5aef2..69b6db4 100644 --- a/modules/satoshipay.nix +++ b/modules/satoshipay.nix @@ -5,9 +5,9 @@ daemonConfig = { ipv6 = true; fixed-cidr-v6 = "fd69:2074:9fcd:b0fd::/64"; - features = [ - { buildkit = true; } - ]; + features = { + buildkit = true; + }; }; in { enable = true; |