nixos-config/modules/home/hyprland/hyprland.nix
2023-11-05 18:22:06 +01:00

30 lines
559 B
Nix

{ inputs, pkgs, ...}:
{
home.packages = with pkgs; [
swww
inputs.hypr-contrib.packages.${pkgs.system}.grimblast
hyprpicker
wofi
rofi-wayland
wlogout
grim
slurp
wl-clipboard
cliphist
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;
systemdIntegration = true;
};
}