From 99fee4fddfa50ac834923bc69e1358c9837568cf Mon Sep 17 00:00:00 2001 From: SebastianStork Date: Sat, 20 Jul 2024 14:37:24 +0200 Subject: [PATCH] Remove superfluous tmpfile settings --- modules/system/wlan.nix | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/modules/system/wlan.nix b/modules/system/wlan.nix index 3c467a6..0efa37e 100644 --- a/modules/system/wlan.nix +++ b/modules/system/wlan.nix @@ -39,11 +39,9 @@ }; systemd.tmpfiles.rules = [ - "C /var/lib/iwd/WLAN-233151.psk 0600 root root - ${ - config.sops.templates."iwd/WLAN-233151.psk".path - }" - "C /var/lib/iwd/Fairphone4.psk 0600 root root - ${config.sops.templates."iwd/Fairphone4.psk".path}" - "C /var/lib/iwd/DSL_EXT.psk 0600 root root - ${config.sops.templates."iwd/DSL_EXT.psk".path}" + "C /var/lib/iwd/WLAN-233151.psk - - - - ${config.sops.templates."iwd/WLAN-233151.psk".path}" + "C /var/lib/iwd/Fairphone4.psk - - - - ${config.sops.templates."iwd/Fairphone4.psk".path}" + "C /var/lib/iwd/DSL_EXT.psk - - - - ${config.sops.templates."iwd/DSL_EXT.psk".path}" ]; environment.systemPackages = [ pkgs.iwgtk ];