nixos-config/modules/home/hyprland/hyprland.nix
2025-07-09 14:29:35 +02:00

31 lines
561 B
Nix

{
inputs,
pkgs,
...
}: {
home.packages = with pkgs; [
# swww
swaybg
inputs.hypr-contrib.packages.${pkgs.system}.grimblast
hyprpicker
grim
slurp
wl-clip-persist
wf-recorder
glib
wayland
];
systemd.user.targets.hyprland-session.Unit.Wants = ["xdg-desktop-autostart.target"];
wayland.windowManager.hyprland = {
enable = true;
xwayland = {
enable = true;
# hidpi = true;
};
# enableNvidiaPatches = false;
systemd.enable = false;
};
services.hyprpolkitagent.enable = true;
}