diff options
Diffstat (limited to 'modules/desktop/hyprland')
-rw-r--r-- | modules/desktop/hyprland/default.nix | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/modules/desktop/hyprland/default.nix b/modules/desktop/hyprland/default.nix deleted file mode 100644 index 2acf5b6..0000000 --- a/modules/desktop/hyprland/default.nix +++ /dev/null @@ -1,36 +0,0 @@ -{ config, lib, pkgs, user, ... }: -with lib; -let -in -{ - options = { - hyprland = { - enable = mkOption { - type = types.bool; - default = false; - }; - }; - }; - - config = mkIf (config.hyprland.enable) - { - environment.variables.WLR_NO_HARDWARE_CURSORS = "1"; - environment.systemPackages = with pkgs; [ - wayland - glib - wl-clipboard - wdisplays - hyprpaper - ]; - - programs.hyprland = { - enable = true; - xwayland.enable = true; - enableNvidiaPatches = true; - }; - - programs.waybar = { - enable = true; - }; - }; -} |