Files
nix-config/hosts/common/optional/hyprland.nix
2025-02-16 06:35:32 +00:00

25 lines
419 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
];
}