From 05f4cc5cdc72adf5ea62e8898252887b1f627115 Mon Sep 17 00:00:00 2001 From: Michael Thomson Date: Sat, 29 Mar 2025 12:13:53 -0400 Subject: [PATCH] update hyprland --- modules/home-manager/hyprland.nix | 2 +- modules/nixos/hyprland.nix | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/home-manager/hyprland.nix b/modules/home-manager/hyprland.nix index f518ab7..487b17d 100644 --- a/modules/home-manager/hyprland.nix +++ b/modules/home-manager/hyprland.nix @@ -5,7 +5,7 @@ inputs, }: { wayland.windowManager.hyprland = { - enable = false; + enable = true; package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland; portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland; settings = { diff --git a/modules/nixos/hyprland.nix b/modules/nixos/hyprland.nix index 417dd30..855f745 100644 --- a/modules/nixos/hyprland.nix +++ b/modules/nixos/hyprland.nix @@ -7,12 +7,12 @@ }; programs = { hyprland = { - enable = false; + enable = true; package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland; portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland; }; thunar = { - enable = false; + enable = true; }; }; environment.sessionVariables.NIXOS_OZONE_WL = "1";