dots/modules/hyprland.nix
Nico 819f9fd01e nix: put display manager in a seperate file
uhh didnt save file when committing
2025-05-03 16:31:41 +10:00

28 lines
533 B
Nix

{ config, lib, pkgs, self, ... }:
{
programs.hyprland.enable = true;
# Optional, hint electron apps to use wayland:
environment.sessionVariables.NIXOS_OZONE_WL = "1";
# have portals
xdg.portal.enable = true;
xdg.portal.extraPortals = [ pkgs.xdg-desktop-portal-gtk ];
programs.hyprlock.enable = true;
environment.systemPackages = with pkgs; [
kitty
waybar
swww
grim
slurp
wl-clipboard
brightnessctl
helvum
ulauncher
playerctl
swaynotificationcenter
flameshot
];
}