nixos-config/modules/home/hyprland/hyprland.nix
2023-12-25 18:58:02 +01:00

29 lines
545 B
Nix

{ inputs, pkgs, ...}:
{
home.packages = with pkgs; [
# swww
swaybg
inputs.hypr-contrib.packages.${pkgs.system}.grimblast
hyprpicker
wofi
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;
systemd.enable = true;
};
}