nixos_config/system/piplup/gui-hyprland.nix
Whovian9369 35c13c5e10 Add pretty basic Hyprland config to piplup.
In case I want to use it, though I don't imagine doing so soon.
2024-11-20 11:16:36 -05:00

17 lines
568 B
Nix
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
# Mostly from https://wiki.hyprland.org/Nix/Hyprland-on-NixOS/
programs.hyprland.enable = true; # enable Hyprland
environment.systemPackages = [
# ... other packages
pkgs.kitty # required for the default Hyprland config
];
# Optional, hint Electron apps to use Wayland:
# environment.sessionVariables.NIXOS_OZONE_WL = "1";
# If your themes for mouse cursors, icons or windows dont load correctly, see
# the relevant section in Hyprland on Home Manager.
# Which is likely https://wiki.hyprland.org/Nix/Hyprland-on-Home-Manager/#faq
}