From b0d4360415f61da21fe255dd1196cc25dbf72c70 Mon Sep 17 00:00:00 2001 From: Dennis Schoepf Date: Wed, 4 Mar 2026 22:51:00 +0100 Subject: [PATCH] fixes missing config --- modules/hosts/dnsc-server/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/hosts/dnsc-server/default.nix b/modules/hosts/dnsc-server/default.nix index 495200b..11b027e 100644 --- a/modules/hosts/dnsc-server/default.nix +++ b/modules/hosts/dnsc-server/default.nix @@ -19,7 +19,7 @@ in restic samba-share - { + ({ config, ... }: { imports = [ ./_hardware-configuration.nix ]; networking.hostName = hostname; system.stateVersion = "24.11"; @@ -37,7 +37,7 @@ in # Options for my custom modules samba-share.path = "/main/share"; samba-share.allowedHosts = "192.168.178. 127.0.0.1 localhost"; - } + }) ]; }; }