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

17 lines
242 B
Nix

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