Files
nixos-configs/modules/system/hyprland.nix
2025-09-03 19:41:28 -07:00

49 lines
745 B
Nix

{ config, pkgs, ... }:
{
programs.hyprland = {
enable = true;
xwayland.enable = true;
};
services.displayManager.gdm = {
enable = true;
wayland = true;
};
services.xserver = {
enable = true;
};
hardware.graphics = {
enable = true;
enable32Bit = true;
};
xdg.portal.enable = true;
xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
programs.hyprlock.enable = true;
programs.waybar.enable = true;
services.hypridle.enable = true;
environment.systemPackages = with pkgs; [
arandr
dunst
flameshot
grim
hyprpaper
hyprpicker
kanshi
libnotify
mako
nwg-look
rofi-wayland
slurp
swayimg
wl-clipboard
wlogout
wofi
];
}