forked from javif89/nix
17 lines
242 B
Nix
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
|
|
];
|
|
}
|