diff --git a/modules/default.nix b/modules/default.nix index 8832d59..009a904 100644 --- a/modules/default.nix +++ b/modules/default.nix @@ -3,7 +3,6 @@ ./configuration.nix ./hardware-configuration.nix ./fingerprint.nix - ./hyprland.nix ./shell.nix ./wayland.nix ./greetd.nix diff --git a/modules/hyprland.nix b/modules/hyprland.nix deleted file mode 100644 index b44635b..0000000 --- a/modules/hyprland.nix +++ /dev/null @@ -1,11 +0,0 @@ -{ pkgs, ... }: - -{ - # Enable Hyprland - programs.hyprland.enable = true; - environment.sessionVariables.NIXOS_OZONE_WL = "1"; - - environment.systemPackages = with pkgs; [ - hyprlock - ]; -}