Nix: include kitty in code snippets

This commit is contained in:
Mihai Fufezan 2024-08-31 12:28:06 +03:00
parent eb811e3564
commit a8408557d5
Signed by: fufexan
SSH Key Fingerprint: SHA256:SdnKmEpJrDu1+2UO1QpB/Eg4HKcdDi6n+xSRqFNJVpg
2 changed files with 12 additions and 2 deletions

View File

@ -28,7 +28,11 @@ For a list of available options, check the
```nix
{
wayland.windowManager.hyprland.enable = true;
programs.kitty.enable = true; # required for the default Hyprland config
wayland.windowManager.hyprland.enable = true; # enable Hyprland
# Optional, hint Electron apps to use Wayland:
# home.sessionVariables.NIXOS_OZONE_WL = "1";
}
```

View File

@ -34,7 +34,13 @@ Make sure to check out the options of the
# configuration.nix
{
programs.hyprland.enable = true;
programs = {
kitty.enable = true; # required for the default Hyprland config
hyprland.enable = true; # enable Hyprland
};
# Optional, hint Electron apps to use Wayland:
# environment.sessionVariables.NIXOS_OZONE_WL = "1";
}
```