cornflake/programs/desktop/hyprland.nix

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; [
swww
eww
];
}