12 lines
261 B
Nix
12 lines
261 B
Nix
{ inputs, pkgs, ... }:
|
|
|
|
{
|
|
# Enable Hyprland
|
|
programs.hyprland.enable = true;
|
|
environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
|
environment.sessionVariables.WLR_NO_HARDWARE_CURSORS = "1";
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
hyprlock
|
|
];
|
|
}
|