Files
parana/modules/hyprland/hyprland.nix
2026-07-10 20:07:29 -04:00

24 lines
524 B
Nix

{ inputs, pkgs, ... }:
{
home.packages = with pkgs; [
swww
# hyprpicker
# wofi
];
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;
};
wayland.windowManager.hyprland.extraConfig = ''
source = ~/.config/hypr/monitors.conf
source = ~/.config/hypr/workspaces.conf
'';
}