This commit is contained in:
Peritia 2026-02-12 15:32:45 +01:00
parent b6b87d5aed
commit 9c72a71585
3546 changed files with 18655 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{
config,
lib,
nixosVista,
...
}: let
cfg = nixosVista.hyprland;
############################################################
# Environment variables (Hyprland env = ...)
############################################################
envLines =
lib.mapAttrsToList
(name: value: "env = ${name},${value}")
cfg.env;
in {
config = lib.mkIf nixosVista.enable {
nixosVista.hyprland.fragments.environment = ''
############################################################
# Environment
############################################################
# env = XCURSOR_SIZE,24
# env = HYPRCURSOR_SIZE,24
${lib.concatStringsSep "\n" envLines}
'';
};
}