Files
nix-config/hosts/common/optional/hyprland.nix
2025-09-27 22:27:55 +05:00

24 lines
424 B
Nix

{
inputs,
pkgs,
...
}: {
programs.hyprland = {
enable = true;
package =
inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
portalPackage =
inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
};
environment.systemPackages = with pkgs; [
hyprshot
hyprlock
hypridle
hyprpolkitagent
mako
waybar
wofi
];
}