diff --git a/system/hyprland.nix b/system/hyprland.nix index 945b706e..6a0fda5e 100644 --- a/system/hyprland.nix +++ b/system/hyprland.nix @@ -8,12 +8,14 @@ environment = { sessionVariables = { NIXOS_OZONE_WL = "1"; - XDG_CURRENT_DESKTOP = "Hyprland"; XDG_SESSION_TYPE = "wayland"; XDG_SESSION_DESKTOP = "Hyprland"; + XDG_CURRENT_DESKTOP = "Hyprland"; GRIM_DEFAULT_DIR = "$HOME/Pictures/Grim"; }; systemPackages = with pkgs; [ + hyprlock + hyprpaper xdg-utils wtype wl-clipboard @@ -26,7 +28,10 @@ streamlink ]; }; - security.pam.services.swaylock = {}; + security.pam.services = { + swaylock = {}; + hyprlock = {}; + }; services = { xserver.enable = false; blueman.enable = true;