Files
nix-config/hosts/common/optional/hyprland.nix

25 lines
332 B
Nix

{
pkgs,
...
}: {
programs = {
hyprland = {
enable = true;
xwayland.enable = true;
systemd.setPath.enable = true;
};
hyprlock.enable = true;
};
services.hypridle.enable = true;
environment.systemPackages = with pkgs; [
hyprshot
hyprpolkitagent
mako
waybar
wofi
];
}