aboutsummaryrefslogtreecommitdiff
path: root/modules/user/desktops/hyprland.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/user/desktops/hyprland.nix')
-rw-r--r--modules/user/desktops/hyprland.nix6
1 files changed, 6 insertions, 0 deletions
diff --git a/modules/user/desktops/hyprland.nix b/modules/user/desktops/hyprland.nix
new file mode 100644
index 0000000..bc369bc
--- /dev/null
+++ b/modules/user/desktops/hyprland.nix
@@ -0,0 +1,6 @@
+{ config, lib, options, ... }:
+{
+ options.desktops = {
+ enable = lib.mkOption { type = with lib.types; nullOr (enum [ "hyprland" ]); };
+ };
+}