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