clan: Remove unecessary templates and modules interface

This commit is contained in:
Qubasa
2025-01-29 19:24:15 +07:00
parent 5ceec3844a
commit 9a79ea8e1d
7 changed files with 1 additions and 128 deletions

View File

@@ -1,28 +0,0 @@
{
lib,
...
}:
let
types = lib.types;
in
{
options = {
# clan.templates.disko
disko = lib.mkOption {
type = types.attrsOf (types.submodule { imports = [ ./disko/interface.nix ]; });
default = { };
description = ''
Holds different disko templates.
'';
};
# clan.templates.clan
clan = lib.mkOption {
type = types.attrsOf (types.submodule { imports = [ ./clan/interface.nix ]; });
default = { };
description = ''
Holds the different clan templates.
'';
};
};
}