summaryrefslogtreecommitdiff
path: root/hosts/common/options.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2023-01-28 06:29:39 -0500
committerseth <[email protected]>2023-01-28 06:29:39 -0500
commit904c82a745715966cbf023a3e8bdae609975f5d4 (patch)
treef91245f6817b57edec59da520d6ce3b9046741c9 /hosts/common/options.nix
parentf23abee3530260e43aabf311ff49c13286648099 (diff)
make switching desktops easier
Diffstat (limited to 'hosts/common/options.nix')
-rw-r--r--hosts/common/options.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/hosts/common/options.nix b/hosts/common/options.nix
index 8d4bf5b..c36d4e2 100644
--- a/hosts/common/options.nix
+++ b/hosts/common/options.nix
@@ -10,5 +10,10 @@
default = false;
description = "signifies that the flake is being installed in wsl";
};
+ desktop = mkOption {
+ type = types.str;
+ default = "";
+ description = "set the desktop";
+ };
};
}