diff options
| author | seth <[email protected]> | 2023-01-26 06:08:41 -0500 |
|---|---|---|
| committer | seth <[email protected]> | 2023-01-26 06:08:41 -0500 |
| commit | 08895833e51bdfd760f2b4915a3997c13fe65b13 (patch) | |
| tree | 76e0ec29dea51c9a0aa0502cf8e87eadc71dd3ec /hosts/common/options.nix | |
| parent | 43bf016d0fb5b3b2db796fdc37abf243f1223df1 (diff) | |
more refactoring
Diffstat (limited to 'hosts/common/options.nix')
| -rw-r--r-- | hosts/common/options.nix | 14 |
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"; }; }; } |
