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,40 @@
{
config,
lib,
nixosVista,
...
}: let
cfg = nixosVista.hyprland.special;
in {
config = lib.mkIf (nixosVista.enable && cfg.noHardwareCursor) {
nixosVista.hyprland.fragments.special = ''
############################################################
# Special Settings
############################################################
cursor {
no_hardware_cursors = true
}
############################################################
# Ill make an option for this later:
############################################################
# We have our own wallpapers :) So I'll disable default things.
misc {
force_default_wallpaper = 0
disable_hyprland_logo = true
}
# No need for gestures unless you have a touch display.
# gestures {
# workspace_swipe = false
# }
'';
};
}