nixos-config/modules/home/hyprland/hyprland.nix

29 lines
545 B
Nix
Raw Normal View History

2023-11-05 17:56:55 +01:00
{ inputs, pkgs, ...}:
{
2023-11-05 11:40:44 +01:00
home.packages = with pkgs; [
# swww
swaybg
2023-11-05 11:40:44 +01:00
inputs.hypr-contrib.packages.${pkgs.system}.grimblast
hyprpicker
wofi
grim
slurp
wl-clipboard
# cliphist
2023-11-05 11:40:44 +01:00
wf-recorder
glib
wayland
direnv
];
systemd.user.targets.hyprland-session.Unit.Wants = [ "xdg-desktop-autostart.target" ];
wayland.windowManager.hyprland = {
enable = true;
xwayland = {
enable = true;
2023-11-05 18:22:51 +01:00
# hidpi = true;
2023-11-05 11:40:44 +01:00
};
2023-11-29 16:34:38 +01:00
# enableNvidiaPatches = false;
2023-12-25 18:58:02 +01:00
systemd.enable = true;
2023-11-05 11:40:44 +01:00
};
}