Interfaces: unclutter meta interface, file conflict position tracking

This commit is contained in:
Johannes Kirschbauer
2024-10-04 13:47:46 +02:00
parent 091ff4e736
commit 71d3d03b43
4 changed files with 50 additions and 32 deletions

View File

@@ -0,0 +1,25 @@
{ lib, ... }:
let
types = lib.types;
metaOptions = {
name = lib.mkOption { type = types.nullOr types.str; };
description = lib.mkOption {
default = null;
type = types.nullOr types.str;
description = ''
Optional freeform description
'';
};
icon = lib.mkOption {
default = null;
type = types.nullOr types.str;
description = ''
Under construction, will be used for the UI
'';
};
};
in
{
options = metaOptions;
}