From f5c61382dd0ba250b9386ea700b99edb7de53730 Mon Sep 17 00:00:00 2001 From: Johannes Kirschbauer Date: Sun, 27 Apr 2025 10:28:43 +0200 Subject: [PATCH] chore: remove unused option 'clanSchema' from core nixos modules --- nixosModules/clanCore/default.nix | 1 - nixosModules/clanCore/schema.nix | 12 ------------ 2 files changed, 13 deletions(-) delete mode 100644 nixosModules/clanCore/schema.nix diff --git a/nixosModules/clanCore/default.nix b/nixosModules/clanCore/default.nix index d6e037ceb..fcf1c0c37 100644 --- a/nixosModules/clanCore/default.nix +++ b/nixosModules/clanCore/default.nix @@ -12,7 +12,6 @@ ./nix-settings.nix ./options.nix ./outputs.nix - ./schema.nix ./sops.nix ./vars ] diff --git a/nixosModules/clanCore/schema.nix b/nixosModules/clanCore/schema.nix deleted file mode 100644 index 3531d9a45..000000000 --- a/nixosModules/clanCore/schema.nix +++ /dev/null @@ -1,12 +0,0 @@ -{ options, lib, ... }: -let - jsonschema = import ../../lib/jsonschema { inherit lib; } { }; -in -{ - options.clanSchema = lib.mkOption { - type = lib.types.attrs; - description = "The json schema for the .clan options namespace"; - default = jsonschema.parseOptions options.clan { }; - defaultText = lib.literalExpression "jsonschema.schemaToJSON options.clan"; - }; -}