From 28fdc04c7b9f3fe54241d32bad0e9db58d8feb6f Mon Sep 17 00:00:00 2001 From: soraefir Date: Mon, 4 May 2026 00:10:05 +0200 Subject: [PATCH] Fix types --- modules/shared/syscfg/default.nix | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/modules/shared/syscfg/default.nix b/modules/shared/syscfg/default.nix index 5606ea6..cf8317f 100644 --- a/modules/shared/syscfg/default.nix +++ b/modules/shared/syscfg/default.nix @@ -103,28 +103,28 @@ let default = "/media/data"; }; arion = mkOption { - type = type.bool; + type = types.bool; default = false; }; sops = mkOption { - type = type.bool; + type = types.bool; default = false; }; openssh = mkOption { - type = type.bool; + type = types.bool; default = false; }; wireguard = mkOption { - type = type.bool; + type = types.bool; default = false; }; web = mkOption { - type = type.bool; + type = types.bool; default = false; }; nftables = { enable = mkOption { - type = type.bool; + type = types.bool; default = false; }; ifs = mkOption {