From 8b96dd41971e008a6a2527fe10c6670d2248117e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karel=20Ko=C4=8D=C3=AD?= Date: Mon, 6 Feb 2023 20:44:14 +0100 Subject: Apply statix suggestions --- nixos/modules/syncthing.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nixos/modules/syncthing.nix') diff --git a/nixos/modules/syncthing.nix b/nixos/modules/syncthing.nix index 716e5a3..263acbe 100644 --- a/nixos/modules/syncthing.nix +++ b/nixos/modules/syncthing.nix @@ -7,7 +7,7 @@ with builtins; with lib; let cnf = config.cynerd.syncthing; - hostName = config.networking.hostName; + inherit (config.networking) hostName; allDevices = [ "albert" "binky" @@ -29,7 +29,7 @@ with lib; let "ridcully" "spt-omnia" ]; - filterDevice = folders: filterAttrs (n: v: any (d: d == hostName) v.devices) folders; + filterDevice = filterAttrs (n: v: any (d: d == hostName) v.devices); in { options = { cynerd.syncthing = { -- cgit v1.2.3