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