My Nix Configuration
1# https://wiki.hypr.land/Configuring/Variables 2{ 3 general = { 4 gaps_in = 1; 5 gaps_out = 10; 6 layout = "hy3"; 7 resize_on_border = true; 8 }; 9 decoration = { 10 blur.enabled = false; 11 shadow.enabled = false; 12 }; 13 misc = { 14 disable_hyprland_logo = true; 15 disable_splash_rendering = true; 16 font_family = "Inter"; 17 mouse_move_focuses_monitor = true; 18 }; 19 input = { 20 kb_options = "caps:escape"; 21 repeat_delay = 300; 22 touchpad = { 23 scroll_factor = 1.5; 24 tap_button_map = "lmr"; 25 tap-and-drag = false; 26 }; 27 }; 28 cursor = { 29 hotspot_padding = 2; 30 }; 31 ecosystem = { 32 no_update_news = true; 33 no_donation_nag = true; 34 }; 35}