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 = {
type = lib.types.bool; discord = lib.mkOption {
default = false; type = lib.types.bool;
}; default = false;
};
options.graphical.ghostty = lib.mkOption { 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 {
type = lib.types.bool;
options.graphical.vscode = lib.mkOption { default = false;
type = lib.types.bool; };
default = false;
}; };
} }