moved options together

This commit is contained in:
John Lancaster
2025-07-06 21:42:40 -05:00
parent ce738ae612
commit e21c901e94

View File

@@ -60,24 +60,23 @@
description = "Whether to enable docker stuff";
};
options.graphical.discord = lib.mkOption {
options.graphical = {
discord = lib.mkOption {
type = lib.types.bool;
default = false;
};
options.graphical.ghostty = lib.mkOption {
ghostty = lib.mkOption {
type = lib.types.bool;
default = false;
};
options.graphical.steam = lib.mkOption {
steam = lib.mkOption {
type = lib.types.bool;
default = false;
description = "Whether this system has Steam installed";
};
options.graphical.vscode = lib.mkOption {
vscode = lib.mkOption {
type = lib.types.bool;
default = false;
};
};
}