me like nix
0

Configure Feed

Select the types of activity you want to include in your feed.

1# Sample hyprland.conf (save as e.g. /etc/nixos/hyprland.conf) 2# See https://wiki.hyprland.org/Configuring/Variables/ for more 3 4# Monitor setup (adjust to your needs) 5monitor=,preferred,auto,1 # preferred monitor, auto resolution, auto position, scale 1 6 7# Autostart some essential programs 8exec-once = waybar # Starts Waybar (if you configure it later) 9 10#exec-once = swaybg -m fill -i /path/to/your/wallpaper.png 11# You'll need to find/download a wallpaper 12# Or use `pkgs.swaybg` and specify a package path if you want 13 14exec-once = lxqt-policykit-agent # Starts the polkit agent for authentication 15exec-once = dbus-update-activation-environment --systemd WAYLAND_DISPLAY XDG_CURRENT_DESKTOP # For portals 16exec-once = systemctl --user import-environment WAYLAND_DISPLAY XDG_CURRENT_DESKTOP # For portals 17# exec-once = mako # Starts Mako notification daemon (if you configure it later) 18# exec-once = cliphist store # Start clipboard history 19 20# Environment variables that Hyprland itself should set 21env = XCURSOR_SIZE,24 22# env = GDK_BACKEND,wayland,x11 # Already in home.sessionVariables generally 23# env = QT_QPA_PLATFORM,wayland;xcb # Already in home.sessionVariables 24# env = SDL_VIDEODRIVER,wayland # Already in home.sessionVariables 25# env = CLUTTER_BACKEND,wayland # Already in home.sessionVariables 26# env = XDG_CURRENT_DESKTOP,Hyprland # Already in home.sessionVariables 27# env = XDG_SESSION_TYPE,wayland # Already in home.sessionVariables 28# env = XDG_SESSION_DESKTOP,Hyprland # Already in home.sessionVariables 29 30# Input settings 31input { 32 kb_layout = us 33 kb_variant = 34 kb_model = 35 kb_options = 36 kb_rules = 37 38 follow_mouse = 1 39 40 touchpad { 41 natural_scroll = no 42 } 43 44 sensitivity = 0 # -1.0 - 1.0, 0 means no modification. 45} 46 47# General settings 48general { 49 gaps_in = 5 50 gaps_out = 10 51 border_size = 2 52 col.active_border = rgba(33ccffee) rgba(00ff99ee) 45deg 53 col.inactive_border = rgba(595959aa) 54 55 layout = dwindle # master or dwindle 56} 57 58# Decoration (window borders, shadows) 59decoration { 60 rounding = 5 61 blur { 62 enabled = true 63 size = 3 64 passes = 1 65 } 66 67 drop_shadow = yes 68 shadow_range = 4 69 shadow_render_power = 3 70 col.shadow = rgba(1a1a1aee) 71} 72 73# Animations 74animations { 75 enabled = yes 76 bezier = myBezier, 0.05, 0.9, 0.1, 1.05 77 animation = windows, 1, 7, myBezier 78 animation = windowsOut, 1, 7, default, popin 80% 79 animation = border, 1, 10, default 80 animation = fade, 1, 7, default 81 animation = workspaces, 1, 6, default 82} 83 84# Dwindle layout specific 85dwindle { 86 pseudotile = yes # master switch for pseudotiling. Enabling is bound to mainMod + P in the keybinds section below 87 preserve_split = yes # you probably want this 88} 89 90# Master layout specific 91master { 92 new_is_master = true 93} 94 95# Gestures (for touchpads) 96gestures { 97 workspace_swipe = off 98} 99 100# Window rules (example) 101# windowrulev2 = float,class:^(kitty)$,title:^(kitty)$ # Example to float kitty terminal 102 103# --- KEYBINDINGS --- 104$mainMod = SUPER # Sets the "Windows" key as the main modifier 105 106# Example binds, see https://wiki.hyprland.org/Configuring/Binds/ for more 107bind = $mainMod, RETURN, exec, kitty # Open terminal (kitty) 108bind = $mainMod, Q, exec, kitty # Alternative to open terminal 109bind = $mainMod, C, killactive, # Close active window 110bind = $mainMod SHIFT, Q, exit, # Exit Hyprland (ends session) 111bind = $mainMod, E, exec, nemo # Open file manager (nemo, install it if you want it) 112bind = $mainMod, V, togglefloating, # Toggle floating for active window 113bind = $mainMod, D, exec, wofi --show drun # Show application launcher (wofi) 114bind = $mainMod, P, pseudo, # dwindle 115bind = $mainMod, J, togglesplit, # dwindle 116 117# Move focus with mainMod + arrow keys 118bind = $mainMod, left, movefocus, l 119bind = $mainMod, right, movefocus, r 120bind = $mainMod, up, movefocus, u 121bind = $mainMod, down, movefocus, d 122 123# Switch workspaces with mainMod + [0-9] 124bind = $mainMod, 1, workspace, 1 125bind = $mainMod, 2, workspace, 2 126bind = $mainMod, 3, workspace, 3 127# ... up to 9 and 0 128 129# Move active window to a workspace with mainMod + SHIFT + [0-9] 130bind = $mainMod SHIFT, 1, movetoworkspace, 1 131bind = $mainMod SHIFT, 2, movetoworkspace, 2 132bind = $mainMod SHIFT, 3, movetoworkspace, 3 133# ... up to 9 and 0 134 135# Scroll through existing workspaces with mainMod + scroll 136bind = $mainMod, mouse_down, workspace, e+1 137bind = $mainMod, mouse_up, workspace, e-1 138 139# Move/resize windows with mainMod + LMB/RMB and dragging 140bindm = $mainMod, mouse:272, movewindow 141bindm = $mainMod, mouse:273, resizewindow