nixos-config/modules/home/hyprland/hyprland.nix
2024-04-13 17:01:32 +02:00

27 lines
524 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
direnv
];
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 = true;
};
}