Fixed missing = in common. Further saving of bytes.

This commit is contained in:
kat witch 2021-09-04 02:52:58 +01:00
parent afdeb7da3e
commit 6b4e18bbb5
No known key found for this signature in database
GPG key ID: 1B477797DCA5EC72
4 changed files with 3 additions and 3 deletions

View file

@ -6,7 +6,6 @@
];
kw.oci = {
base = "Canonical Ubuntu";
specs = {
shape = "VM.Standard.A1.Flex";
cores = 4;

View file

@ -6,7 +6,6 @@
];
kw.oci = {
base = "Canonical Ubuntu";
specs = {
shape = "VM.Standard.E2.1.Micro";
cores = 1;

View file

@ -91,7 +91,7 @@ in
tf.ipv6.address = tf.resources.rinnosuke_ipv6.refAttr "ip_address";
};
};
firewall.public.interfaces singleton interface;
firewall.public.interfaces = singleton interface;
tf = {
enable = true;
ipv4_attr = "public_ip";

View file

@ -6,6 +6,7 @@
ubuntu = true;
common = true;
};
kw.oci.base = "Canonical Ubuntu";
imports = with import (sources.tf-nix + "/modules"); [
nixos.ubuntu-linux
common
@ -16,6 +17,7 @@
oracle = true;
common = true;
};
kw.oci.base = "Oracle Linux";
imports = with import (sources.tf-nix + "/modules"); [
nixos.oracle-linux
common