summaryrefslogtreecommitdiff
path: root/hosts/common/options.nix
diff options
context:
space:
mode:
Diffstat (limited to 'hosts/common/options.nix')
-rw-r--r--hosts/common/options.nix14
1 files changed, 7 insertions, 7 deletions
diff --git a/hosts/common/options.nix b/hosts/common/options.nix
index 2d532ed..8d4bf5b 100644
--- a/hosts/common/options.nix
+++ b/hosts/common/options.nix
@@ -1,14 +1,14 @@
{lib, ...}: {
- options.system = with lib.types; {
- devel-packages = lib.mkOption {
- type = bool;
+ options.sys = with lib; {
+ gui.enable = mkOption {
+ type = types.bool;
default = false;
- description = "install development packages for neovim lsp";
+ description = "install gui-related packages";
};
- gui-stuff = lib.mkOption {
- type = bool;
+ wsl.enable = mkOption {
+ type = types.bool;
default = false;
- description = "install gui-related packages";
+ description = "signifies that the flake is being installed in wsl";
};
};
}