{ description = "Hyprland Config"; inputs = { hyprland.url = "git+https://github.com/hyprwm/Hyprland?submodules=1"; }; outputs = { self, ... }@inputs: { module = { config, lib, pkgs, ... }: { programs.hyprland = { enable = true; xwayland.enable = true; package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland; portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland; }; }; hmModule = { config, lib, pkgs, ... }: { home.sessionVariables.NIX_OZONE_WL = "1"; programs.kitty.enable = lib.mkDefault true; home.packages = with pkgs; [ pyprland ]; home.file.".config/hypr/pyprland.toml".text = '' [pyprland] plugins = [ "scratchpads" ] [scratchpads.nvim] animation = "fromTop" command = "kitty --class scratchpad-nvim -e nvim ~" lazy = false class = "scratchpad-nvim" margin = 100 multi = true excludes = "*" [scratchpads.free] animation = "fromBottom" command = "kitty --class scratchpad" class = "scratchpad" lazy = false margin = 100 multi = true excludes = "*" ''; wayland.windowManager.hyprland = { enable = true; systemd.variables = [ "--all" ]; extraConfig = '' #------------------------------------------------# # _ _ _ _ # #| | | | | | | | # #| |___| |_ _ ____ _ _| | __ _.-.___ ___| | # #| ___ | | | | _ \| |/ | |/ _` | _ \/ _ | # #| | | | |_| | |_) | /| | (_| | | | | (_| | # #|_| |_|\__, | __/|__| |_|\__,_|_| |_|\___/_| # # |___/|_| # # # #------------------------------------------------# monitor=eDP-1,1920x1080@60,0x0,1 exec-once=onSystemStart # Some default env vars. env = XCURSOR_SIZE,16 source = ./otf.conf source = ~/.cache/wal/colors-hypr.conf # For all categories, see https://wiki.hyprland.org/Configuring/Variables/ input { kb_layout = us kb_variant = kb_model = kb_options = kb_rules = follow_mouse = 1 touchpad { natural_scroll = yes } sensitivity = 0 # -1.0 - 1.0, 0 means no modification. } cursor { no_hardware_cursors = true } general { # See https://wiki.hyprland.org/Configuring/Variables/ for more gaps_in = 5 gaps_out = 4 border_size = 2 col.active_border = $color1 $color5 100deg col.inactive_border = $color0 layout = dwindle } decoration { # See https://wiki.hyprland.org/Configuring/Variables/ for more rounding = 2 blur { enabled = false } drop_shadow = yes shadow_range = 4 shadow_render_power = 3 col.shadow = rgba(1a1a1aee) } animations { enabled = yes # Some default animations, see https://wiki.hyprland.org/Configuring/Animations/ for more bezier = myBezier, 0.05, 0.9, 0.1, 1.05 animation = windows, 1, 7, myBezier animation = windowsOut, 1, 7, default, popin 80% animation = border, 1, 10, default animation = borderangle, 1, 8, default animation = fade, 1, 7, default animation = workspaces, 1, 6, default } dwindle { # See https://wiki.hyprland.org/Configuring/Dwindle-Layout/ for more pseudotile = yes # master switch for pseudotiling. Enabling is bound to mainMod + P in the keybinds section below preserve_split = yes # you probably want this } master { # See https://wiki.hyprland.org/Configuring/Master-Layout/ for more new_status = "master" } gestures { # See https://wiki.hyprland.org/Configuring/Variables/ for more workspace_swipe = off } misc { disable_hyprland_logo = false disable_splash_rendering = true force_default_wallpaper = 2 } # Binds $mainMod = ALT bind = $mainMod, E, exec, colorPrefix kitty bind = $mainMod, B, exec, firefox bind = $mainMod SHIFT, B, exec, firefox --private-window bind = $mainMod, Q, killactive, bind = $mainMod, R, exec, colorPrefix kitty -e _systemRebuild bind = $mainMod SHIFT, R, exec, colorPrefix kitty -e _homeRebuild bind = $mainMod, C, exec, colorPrefix kitty -e bash -c "cd ~/Projects/System; nvim ~/Projects/System/flake.nix" bind = $mainMod, F, exec, thunar bind = $mainMod SHIFT, F, fullscreen bind = $mainMod, semicolon, exec, colorPrefix kitty -e nvim ~ bind = $mainMod, Insert, exec, libreoffice & bind = $mainMod, H, exec, bluetoothctl connect 88:D0:39:F9:83:CE bind = $mainMod, V, togglefloating, bind = $mainMod SHIFT, V, exec, vlc & bind = , Menu, exec, rofi -show drun bind = $mainMod, Menu, exec, killall .ags-wrapped; ags & bind = $mainMod, P, pseudo, # dwindle bind = $mainMod, Z, togglesplit, # dwindle bind = $mainMod, M, exec, spotify bind = $mainMod SHIFT, M, exec, firefox --new-window soundcloud.com/you/library bind = $mainMod CTRL, M, exec, colorPrefix kitty -e ncmpcpp -s browser bind = $mainMod, XF86AudioPlay, exec, mpc load casual bind = , XF86AudioPlay, exec, ${pkgs.playerctl}/bin/playerctl play-pause bind = , XF86AudioPause, exec, ${pkgs.playerctl}/bin/playerctl pause bind = $mainMod, F9, exec, ${pkgs.playerctl}/bin/playerctl pause bind = , XF86AudioNext, exec, ${pkgs.playerctl}/bin/playerctl next bind = , XF86AudioPrev, exec, ${pkgs.playerctl}/bin/playerctl previous bind = , XF86Launch2, exec, steam & bind = $mainMod, XF86Launch2, exec, prismlauncher bind = CTRL SHIFT, XF86Launch2, exec, if [[ $(hyprctl monitors | grep 0x0 | sed -n -e "s/\t*1920x1080@//" -e "s/.[1234567890]* at 0x0//p") == 300 ]]; then hyprctl keyword monitor eDP-1,1920x1080@60,0x0,1; else hyprctl keyword monitor eDP-1,1920x1080@300,0x0,1; fi bind = , XF86Calculator, exec, geogebra bind = $mainMod SHIFT, Print, exec, firefox --new-window localhost:631 bind = , Print, exec, grim -g "$(slurp)" bind = $mainMod, Return, exec, ${pkgs.vesktop}/bin/vesktop --enable-features=UseOzonePlatform --ozone-platform=wayland & bind = $mainMod CTRL, Return, exec, firefox --new-window https://discord.com/app # Move focus with mainMod + arrow keys bind = $mainMod, A, movefocus, l bind = $mainMod, D, movefocus, r bind = $mainMod, W, movefocus, u bind = $mainMod, S, movefocus, d # Switch workspaces with mainMod + [0-9] bind = $mainMod, 1, workspace, 1 bind = $mainMod, 2, workspace, 2 bind = $mainMod, 3, workspace, 3 bind = $mainMod, 4, workspace, 4 bind = $mainMod, 5, workspace, 5 bind = $mainMod, 6, workspace, 6 bind = $mainMod, 7, workspace, 7 bind = $mainMod, 8, workspace, 8 bind = $mainMod, 9, workspace, 9 bind = $mainMod, 0, workspace, 10 bind = $mainMod, Home, workspace, 11 # Move active window to a workspace with mainMod + SHIFT + [0-9] bind = $mainMod SHIFT, 1, movetoworkspace, 1 bind = $mainMod SHIFT, 2, movetoworkspace, 2 bind = $mainMod SHIFT, 3, movetoworkspace, 3 bind = $mainMod SHIFT, 4, movetoworkspace, 4 bind = $mainMod SHIFT, 5, movetoworkspace, 5 bind = $mainMod SHIFT, 6, movetoworkspace, 6 bind = $mainMod SHIFT, 7, movetoworkspace, 7 bind = $mainMod SHIFT, 8, movetoworkspace, 8 bind = $mainMod SHIFT, 9, movetoworkspace, 9 bind = $mainMod SHIFT, 0, movetoworkspace, 10 bind = $mainMod SHIFT, Home, movetoworkspace, 11 # Scroll through existing workspaces with mainMod + scroll bind = $mainMod, right, workspace, e+1 bind = $mainMod, left, workspace, e-1 #switch network connections bind = CTRL SHIFT, Escape, exec, nmcli device down wlo1 bind = CTRL SHIFT, 0, exec, nmcli device down wlo1; nmcli connection up Hotspot bind = CTRL SHIFT, 1, exec, nmcli device wifi connect EagleNet password ~?C##@ZiH bind = CTRL SHIFT, 2, exec, nmcli device down wlo1; nmcli device wifi connect CXNK00813829 password a8d859c8cfb420ab bind = CTRL SHIFT, 3, exec, nmcli device down wlo1; nmcli device wifi connect ATT9MhT2ql password 325qxr89u?3t #brightness keys bind = , XF86MonBrightnessUp, exec, brightnessctl set +10% bind = , XF86MonBrightnessDown, exec, brightnessctl set 10%- #volume keys binde = , XF86AudioRaiseVolume, exec, amixer -D default sset Master 10%+ binde = , XF86AudioLowerVolume, exec, amixer -D default sset Master 10%- bind = , XF86AudioMute, exec, amixer -D default sset Master toggle #screen lock key bind = $mainMod, F12, exec, swaylock #logout shortcut bind = CTRL ALT, Delete, exec, loginctl kill-session self # Move/resize windows with mainMod + LMB/RMB and dragging bind = $mainMod SHIFT, W, movewindow, u bind = $mainMod SHIFT, S, movewindow, d bind = $mainMod SHIFT, A, movewindow, l bind = $mainMod SHIFT, D, movewindow, r bindm = $mainMod, mouse:272, movewindow bindm = $mainMod SHIFT, mouse:272, resizewindow $scratchpadsize = size 60% 80% $scratchpad = class:^(scratchpad)$ windowrulev2 = float, $scratchpad windowrulev2 = $scratchpadsize, $scratchpad windowrulev2 = workspace special silent, $scratchpad $kitty = class:^(scratchpad-kitty)$ windowrulev2 = float, $kitty windowrulev2 = $scratchpadsize, $kitty windowrulev2 = workspace special silent, $kitty $nvim = class:^(scratchpad-nvim)$ windowrulev2 = float, $nvim windowrulev2 = $scratchpadsize, $nvim windowrulev2 = workspace special silent, $nvim bind = $mainMod SHIFT, N, exec, colorPrefix pypr toggle nvim bind = $mainMod SHIFT, E, exec, colorPrefix pypr toggle free bind = CTRL SHIFT, Home, exec, ssh -i ~/.ssh/key nathan@69.150.99.129 -fL 5900:localhost:5900 sleep 10; vncviewer localhost:5900 -fullscreen bind = CTRL SHIFT, Home, submap, clean bind = $mainMod CTRL, Home, submap, clean submap = clean bind = $mainMod CTRL, Home, submap, reset submap = reset ''; }; }; }; }