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.nix19
1 files changed, 0 insertions, 19 deletions
diff --git a/hosts/common/options.nix b/hosts/common/options.nix
deleted file mode 100644
index c36d4e2..0000000
--- a/hosts/common/options.nix
+++ /dev/null
@@ -1,19 +0,0 @@
-{lib, ...}: {
- options.sys = with lib; {
- gui.enable = mkOption {
- type = types.bool;
- default = false;
- description = "install gui-related packages";
- };
- wsl.enable = mkOption {
- type = types.bool;
- default = false;
- description = "signifies that the flake is being installed in wsl";
- };
- desktop = mkOption {
- type = types.str;
- default = "";
- description = "set the desktop";
- };
- };
-}