remove broken with statement (average nix lang)

This commit is contained in:
NullBite 2024-02-08 15:38:49 +01:00
parent dba31a2cbb
commit 8146099eb6
Signed by: nullbite
GPG Key ID: 6C4D545385D4925A

View File

@ -1,5 +1,5 @@
{ config, lib, pkgs, ... }: { config, lib, pkgs, ... }:
with lib; let let
cfg = config.nixfiles.common.remoteAccess; cfg = config.nixfiles.common.remoteAccess;
in in
{ {
@ -19,5 +19,5 @@ in
networking.wireguard.enable = true; networking.wireguard.enable = true;
}; };
options = { options = {
nixfiles.common.remoteAccess = mkEnbaleOption "remote access options" ; }; nixfiles.common.remoteAccess = lib.mkEnbaleOption "remote access options" ; };
} }