Added machineIcon and machineDescription to buildClan

This commit is contained in:
Qubasa
2024-02-05 14:18:40 +07:00
parent fc50d8748a
commit b3815527a5
5 changed files with 25 additions and 4 deletions

View File

@@ -6,6 +6,18 @@
the name of the clan
'';
};
machineIcon = lib.mkOption {
type = lib.types.nullOr lib.types.path;
description = ''
the location of the machine icon
'';
};
machineDescription = lib.mkOption {
type = lib.types.str;
description = ''
the description of the machine
'';
};
clanDir = lib.mkOption {
type = lib.types.either lib.types.path lib.types.str;
description = ''