aboutsummaryrefslogtreecommitdiffstats
path: root/modules/nixos/sils/hyprland.nix
diff options
context:
space:
mode:
Diffstat (limited to 'modules/nixos/sils/hyprland.nix')
-rw-r--r--modules/nixos/sils/hyprland.nix15
1 files changed, 0 insertions, 15 deletions
diff --git a/modules/nixos/sils/hyprland.nix b/modules/nixos/sils/hyprland.nix
deleted file mode 100644
index 73ba9c2..0000000
--- a/modules/nixos/sils/hyprland.nix
+++ /dev/null
@@ -1,15 +0,0 @@
-{
- config,
- lib,
- ...
-}: let
- cfg = config.sils.hyprland;
-in {
- options.sils.hyprland.enable = lib.mkEnableOption "hyprland";
- config = lib.mkIf cfg.enable {
- programs.hyprland = {
- enable = true;
- xwayland.enable = true;
- };
- };
-}