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"; description = "Whether to enable docker stuff";
}; };
options.graphical.discord = lib.mkOption { options.graphical = {
discord = lib.mkOption {
type = lib.types.bool; type = lib.types.bool;
default = false; default = false;
}; };
ghostty = lib.mkOption {
options.graphical.ghostty = lib.mkOption {
type = lib.types.bool; type = lib.types.bool;
default = false; default = false;
}; };
steam = lib.mkOption {
options.graphical.steam = lib.mkOption {
type = lib.types.bool; type = lib.types.bool;
default = false; default = false;
description = "Whether this system has Steam installed"; description = "Whether this system has Steam installed";
}; };
vscode = lib.mkOption {
options.graphical.vscode = lib.mkOption {
type = lib.types.bool; type = lib.types.bool;
default = false; default = false;
}; };
};
} }