10 lines
180 B
Nix
10 lines
180 B
Nix
{
|
|
pkgs,
|
|
...
|
|
}:
|
|
|
|
{
|
|
config.programs.hyprland.enable = true;
|
|
config.environment.systemPackages = [ pkgs.kitty ];
|
|
config.environment.sessionVariables.NIXOS_OZONE_WL = "1";
|
|
}
|