dots/modules/desktop/de/hyprland.nix
2026-01-28 23:49:35 +11:00

32 lines
551 B
Nix

{ config, lib, pkgs, self, ... }:
{
programs.hyprland.enable = true;
# Optional, hint electron apps to use wayland:
environment.sessionVariables.NIXOS_OZONE_WL = "1";
programs.hyprlock.enable = true;
services.hypridle.enable = true;
environment.systemPackages = with pkgs; [
ghostty
waybar
swww
grim
slurp
wl-clipboard
brightnessctl
helvum
vicinae
playerctl
swaynotificationcenter
hyprshot
matugen
glib
hyprshade
hyprpolkitagent
];
programs.ssh.startAgent = true;
}