cornflake/programs/desktop/hyprland.nix
2026-04-19 08:26:43 +09:00

18 lines
267 B
Nix

{ pkgs, ... }:
{
programs = {
hyprland = {
enable = true;
xwayland.enable = true;
withUWSM = true;
};
hyprlock.enable = true;
};
services.hypridle.enable = true;
environment.systemPackages = with pkgs; [
awww
eww
];
}