Files
nixos-flake/hyprland-system.nix
T
2026-01-11 18:35:18 +01:00

26 lines
400 B
Nix

{ config, pkgs, ... }:
{
# hypr packages
environment.systemPackages = with pkgs; [
hyprland
hypridle
hyprlock
hyprpaper
hyprpolkitagent
hyprcursor
];
# program enables
programs.hyprland = {
enable = true;
withUSWM = true;
};
# xdg portal for hyprland
xdg.portal = {
enable = true;
extraPortals = [ pkgs.xdg-desktop-portal-hyprland ];
};
}