dotfiles/nixos/hyprland.nix
2024-07-15 20:54:39 -04:00

30 lines
498 B
Nix

{ pkgs, ... }:
{
programs.hyprland = {
enable = true;
};
programs.hyprlock.enable = true;
services.hypridle.enable = true;
programs.thunar.enable = true;
environment.systemPackages = with pkgs; [
hyprcursor
waybar
# Apps
rofi-wayland
# Notifications
swaynotificationcenter
inotify-tools
# Wallpaper
swww
pywal
# Emoji
emote
# Screenshots
grim
slurp
swappy
];
environment.sessionVariables.NIXOS_OZONE_WL = "1";
}