From 35c13c5e1073216c8aa75172cea93af22910a6cc Mon Sep 17 00:00:00 2001 From: Whovian9369 Date: Wed, 20 Nov 2024 11:16:36 -0500 Subject: [PATCH] Add pretty basic Hyprland config to `piplup`. In case I want to use it, though I don't imagine doing so soon. --- system/piplup/gui-hyprland.nix | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 system/piplup/gui-hyprland.nix diff --git a/system/piplup/gui-hyprland.nix b/system/piplup/gui-hyprland.nix new file mode 100644 index 0000000..7e1d232 --- /dev/null +++ b/system/piplup/gui-hyprland.nix @@ -0,0 +1,17 @@ +{ + # 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 don’t load correctly, see + # the relevant section in Hyprland on Home Manager. + # Which is likely https://wiki.hyprland.org/Nix/Hyprland-on-Home-Manager/#faq +}