dotfiles/nixos/hyprland.nix
2024-07-15 20:34:59 -04:00

22 lines
402 B
Nix

{ pkgs, ... }:
{
programs.hyprland = {
enable = true;
#xwayland.enable = true;
};
programs.hyprlock.enable = true;
services.hypridle.enable = true;
programs.thunar.enable = true;
environment.systemPackages = with pkgs; [
hyprcursor
waybar
rofi-wayland
swaynotificationcenter
swww
pywal
emote
];
environment.sessionVariables.NIXOS_OZONE_WL = "1";
}