chore: remove unused option 'clanSchema' from core nixos modules

This commit is contained in:
Johannes Kirschbauer
2025-04-27 10:28:43 +02:00
parent 8bff27a76d
commit f5c61382dd
2 changed files with 0 additions and 13 deletions

View File

@@ -12,7 +12,6 @@
./nix-settings.nix ./nix-settings.nix
./options.nix ./options.nix
./outputs.nix ./outputs.nix
./schema.nix
./sops.nix ./sops.nix
./vars ./vars
] ]

View File

@@ -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";
};
}