From e3a69002767ae1ec1daabe069e4f1ee272b8053d Mon Sep 17 00:00:00 2001 From: alisceon Date: Tue, 2 Dec 2025 19:23:59 +0100 Subject: [PATCH] begone, harlot --- home/wm/hyprland.nix | 18 ------------------ hosts/common/wm/hyprland.nix | 21 --------------------- 2 files changed, 39 deletions(-) delete mode 100644 home/wm/hyprland.nix delete mode 100644 hosts/common/wm/hyprland.nix diff --git a/home/wm/hyprland.nix b/home/wm/hyprland.nix deleted file mode 100644 index 8186637..0000000 --- a/home/wm/hyprland.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ pkgs, config, hostName, lib, ... }: { - wayland.windowManager.hyprland.settings = { - decoration = { - shadow_offset = "0 5"; - "col.shadow" = "rgba(00000099)"; - }; - - "$mod" = "SUPER"; - - bindm = [ - # mouse movements - "$mod, mouse:272, movewindow" - "$mod, mouse:273, resizewindow" - "$mod ALT, mouse:272, resizewindow" - ]; - }; - -} # end file diff --git a/hosts/common/wm/hyprland.nix b/hosts/common/wm/hyprland.nix deleted file mode 100644 index 64a670b..0000000 --- a/hosts/common/wm/hyprland.nix +++ /dev/null @@ -1,21 +0,0 @@ -{ config, pkgs, lib, ... }: -{ - programs.hyprland = { - enable = true; - withUWSM = true; # recommended for most users - xwayland.enable = true; # Xwayland can be disabled. - }; - services.greetd = { - enable = true; - settings = { - default_session = { - command = "${pkgs.greetd.tuigreet}/bin/tuigreet --time --cmd hyprland"; - user = "alisceon"; - }; - }; - }; - environment.systemPackages = with - pkgs; [ - kitty - ]; -}