From 01cdfc447a14d92c37828c2c2787d83af398895d Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Wed, 23 Oct 2024 21:39:09 -0400 Subject: [PATCH] hyprland: more stuff --- modules/nixos/linux/gui/hyprland.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/modules/nixos/linux/gui/hyprland.nix b/modules/nixos/linux/gui/hyprland.nix index 3d0a2d7..dd99f75 100644 --- a/modules/nixos/linux/gui/hyprland.nix +++ b/modules/nixos/linux/gui/hyprland.nix @@ -11,11 +11,18 @@ in # make sure to also set the portal package, so that they are in sync portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland; }; + security.pam.services.hyprlock = { }; home-manager.sharedModules = [{ services.dunst.enable = true; + programs.hyprlock.enable = true; }]; environment.systemPackages = with pkgs; [ kitty - wofi + hyprpaper + hyprnome + hyprshade + + # launchers + walker ]; }