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