nixos-config/modules/home/hyprland/hyprland.nix
2023-11-05 11:40:44 +01:00

32 lines
555 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;
};
nvidiaPatches = false;
systemdIntegration = true;
};
}