nixconf/system/de/hypr/hyprland.nix
2025-08-09 02:10:08 -04:00

18 lines
275 B
Nix

{
config,
pkgs,
inputs,
...
}:
{
# Install hyprland and all the stuff it needs
programs.hyprland.enable = true;
programs.waybar.enable = true;
environment.sessionVariables.NIXOS_OZON_WL = "1";
environment.systemPackages = with pkgs; [
hyprlock
];
}