From 88017f5a874478dd82f306a5df88c38a8d06fcb6 Mon Sep 17 00:00:00 2001 From: tdback Date: Thu, 16 Jan 2025 19:57:13 -0500 Subject: fix: format flake with `nixfmt-rfc-style` --- hosts/heimdall/default.nix | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) (limited to 'hosts/heimdall') diff --git a/hosts/heimdall/default.nix b/hosts/heimdall/default.nix index 7aed928..38b523a 100644 --- a/hosts/heimdall/default.nix +++ b/hosts/heimdall/default.nix @@ -20,10 +20,10 @@ defaultGateway.address = "10.44.0.1"; interfaces.eno1 = { useDHCP = false; - ipv4.addresses = [{ + ipv4.addresses = lib.singleton { address = "10.44.4.100"; prefixLength = 16; - }]; + }; }; }; @@ -36,7 +36,10 @@ programs.motd = { enable = true; - networkInterfaces = lib.lists.singleton "eno1"; - servicesToCheck = [ "searx" "unbound" ]; + networkInterfaces = [ "eno1" ]; + servicesToCheck = [ + "searx" + "unbound" + ]; }; } -- cgit v1.2.3