{ config, lib, nixpkgs, pkgs, home-manager, hyprland, ... }: { imports = [ home-manager.nixosModule ]; home-manager.useGlobalPkgs = true; home-manager.sharedModules = [{ programs.chromium = { enable = true; package = pkgs."ungoogled-chromium"; commandLineArgs = [ "--ozone-platform-hint=auto" ]; extensions = [{ id = "cjpalhdlnbpafiamejdnhcphjbkeiagm"; }]; }; programs.librewolf = { enable = true; settings = { "middlemouse.paste" = false; "browser.download.useDownloadDir" = true; "ui.use_activity_cursor" = true; "browser.tabs.insertAfterCurrent" = true; }; }; xdg.configFile."hypr/hyprland.conf".text = '' env=XCURSOR_SIZE,24 env=BROWSER,librewolf env=GTK_IM_MODULE,fcitx env=QT_IM_MODULE,fcitx env=XMODIFIERS,@im=fcitx env=SDL_IM_MODULE,fcitx env=GLFW_IM_MODULE,ibus monitor=,preferred,auto,1 exec-once = swaybg --mode fill --image "$(fd -d 1 wallpaper.png /nix/store/)" exec-once = wpctl set-volume @DEFAULT_AUDIO_SINK@ 20% exec-once = sleep 0.5 && waybar exec-once = fcitx5 # Japanese input support exec-once = mullvad-vpn exec-once = wl-paste -p --watch wl-copy -pc # Disable middle click paste exec-once = udiskie # Auto-mount drives input { kb_layout = us accel_profile = flat follow_mouse = 1 sensitivity = 0 touchpad { natural_scroll = yes disable_while_typing = no } } general { gaps_in = 0 gaps_out = 0 border_size = 1 col.active_border = rgba(33ccffee) rgba(00ff99ee) 45deg col.inactive_border = rgba(595959aa) layout = master resize_on_border = yes } decoration { rounding = 0 blur = yes blur_size = 3 blur_passes = 1 blur_new_optimizations = yes drop_shadow = yes shadow_range = 4 shadow_render_power = 3 col.shadow = rgba(1a1a1aee) } animations { enabled = yes 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 animation = specialWorkspace, 1, 6, default } dwindle { preserve_split = yes no_gaps_when_only = yes special_scale_factor = 0.95 } master { new_is_master = yes new_on_top = yes mfact = 0.65 special_scale_factor = 0.95 no_gaps_when_only = yes } gestures { workspace_swipe = yes } device:synps/2-synaptics-touchpad { sensitivity = 0.75 accel_profile = flat natural_scroll = yes disable_while_typing = no } device:tpps/2-elan-trackpoint { sensitivity = 0.5 accel_profile = flat } bind = SUPER_SHIFT, Return, exec, kitty bind = SUPER, Tab, workspace, e+1 bind = SUPER_SHIFT, Tab, workspace, e-1 bind = SUPER, Q, killactive, bind = SUPER, P, exec, grim -g "$(slurp)" bind = , Print, exec, grim && dunstify Screenshot Captured. bind = SUPER_ALT, delete, exit bind = SUPER, V, togglefloating, bind = SUPER, V, centerwindow, bind = SUPER, O, exec, killall -SIGUSR1 .waybar-wrapped bind = SUPER, X, pin bind = SUPER, F, fullscreen, 1 bind = SUPER_SHIFT, F, fullscreen bind = SUPER, bracketright, changegroupactive, f bind = SUPER, bracketleft, changegroupactive, b bind = SUPER, S, togglespecialworkspace bind = SUPER_SHIFT, S, movetoworkspace, special bind = SUPER_SHIFT, S, togglespecialworkspace bind = SUPER, Z, exec, rofi -show drun bind = SUPER, Return, exec, ~/.config/hypr/swapmaster.sh bind = SUPER, backslash, exec, ~/.config/hypr/focusmaster.sh bind = SUPER, J, layoutmsg, cyclenext bind = SUPER, K, layoutmsg, cycleprev bind = SUPER_SHIFT, J, layoutmsg, swapnext bind = SUPER_SHIFT, K, layoutmsg, swapprev bind = SUPER, left, layoutmsg, orientationleft bind = SUPER, right, layoutmsg, orientationright bind = SUPER, up, layoutmsg, orientationtop bind = SUPER, down, layoutmsg, orientationbottom bind = SUPER, C, layoutmsg, orientationcenter bind = SUPER, H, layoutmsg, addmaster bind = SUPER, L, layoutmsg, removemaster bind = SUPER_SHIFT, H, splitratio, -0.05 bind = SUPER_SHIFT, L, splitratio, +0.05 bind = SUPER, 1, workspace, 1 bind = SUPER, 2, workspace, 2 bind = SUPER, 3, workspace, 3 bind = SUPER, 4, workspace, 4 bind = SUPER, 5, workspace, 5 bind = SUPER_SHIFT, 1, movetoworkspace, 1 bind = SUPER_SHIFT, 2, movetoworkspace, 2 bind = SUPER_SHIFT, 3, movetoworkspace, 3 bind = SUPER_SHIFT, 4, movetoworkspace, 4 bind = SUPER_SHIFT, 5, movetoworkspace, 5 bind = SUPER_CTRL, 1, exec, ~/.config/hypr/tags.sh 1 bind = SUPER_CTRL, 2, exec, ~/.config/hypr/tags.sh 2 bind = SUPER_CTRL, 3, exec, ~/.config/hypr/tags.sh 3 bind = SUPER_CTRL, 4, exec, ~/.config/hypr/tags.sh 4 bind = SUPER_CTRL, 5, exec, ~/.config/hypr/tags.sh 5 layerrule = blur,waybar layerrule = blur,rofi # Scroll through existing workspaces with super + scroll bind = SUPER, mouse_down, workspace, e+1 bind = SUPER, mouse_up, workspace, e-1 # Move/resize windows with super + LMB/RMB and dragging bindm = SUPER, mouse:272, movewindow bindm = SUPER, mouse:273, resizewindow # Change volume with keys # TODO: Change notification once at 0/100% bindl=, XF86AudioMute, exec, wpctl set-mute @DEFAULT_AUDIO_SINK@ toggle && notify-send -t 2000 "Muted" "$(wpctl get-volume @DEFAULT_AUDIO_SINK@)" bindl=, XF86AudioRaiseVolume, exec, wpctl set-volume -l 1 @DEFAULT_AUDIO_SINK@ 5%+ && notify-send -t 2000 "Raised volume to" "$(wpctl get-volume @DEFAULT_AUDIO_SINK@ | tail -c 3)%" bindl=, XF86AudioLowerVolume, exec, wpctl set-volume @DEFAULT_AUDIO_SINK@ 5%- && notify-send -t 2000 "Lowered volume to" "$(wpctl get-volume @DEFAULT_AUDIO_SINK@ | tail -c 3)%" bindl=, XF86MonBrightnessDown, exec, brightnessctl set 5%- && notify-send -t 2000 "Decreased brightness to" "$(brightnessctl get)" bindl=, XF86MonBrightnessUp, exec, brightnessctl set +5% && notify-send -t 2000 "Increased brightness to" "$(brightnessctl get)" misc { disable_hyprland_logo = yes animate_mouse_windowdragging = yes } ''; home.file.".icons/default/index.theme".text = '' [icon theme] Inherits=phinger-cursors ''; xresources.properties = { "Xft.hinting" = true; "Xft.antialias" = true; "Xft.autohint" = false; "Xft.lcdfilter" = "lcddefault"; "Xft.hintstyle" = "hintfull"; "Xft.rgba" = "rgb"; }; xdg.configFile."xfce4/helpers.rc".text = '' TerminalEmulator=kitty TerminalEmulatorDismissed=true ''; xdg.configFile."mozc/ibus_config.textproto".force = true; xdg.configFile."mozc/ibus_config.textproto".text = '' engines { name : "mozc-jp" longname : "Mozc" layout : "default" layout_variant : "" layout_option : "" rank : 80 } active_on_launch: True ''; xdg.configFile."fcitx5/config".force = true; xdg.configFile."fcitx5/config".text = '' [Hotkey] # Enumerate when press trigger key repeatedly EnumerateWithTriggerKeys=True # Temporally switch between first and current Input Method AltTriggerKeys= # Enumerate Input Method Forward EnumerateForwardKeys= # Enumerate Input Method Backward EnumerateBackwardKeys= # Skip first input method while enumerating EnumerateSkipFirst=False # Enumerate Input Method Group Forward EnumerateGroupForwardKeys= # Enumerate Input Method Group Backward EnumerateGroupBackwardKeys= # Activate Input Method ActivateKeys= # Deactivate Input Method DeactivateKeys= [Hotkey/TriggerKeys] 0=Super+space [Hotkey/PrevPage] 0=Up [Hotkey/NextPage] 0=Down [Hotkey/PrevCandidate] 0=Shift+Tab [Hotkey/NextCandidate] 0=Tab [Hotkey/TogglePreedit] 0=Control+Alt+P [Behavior] # Active By Default ActiveByDefault=False # Share Input State ShareInputState=No # Show preedit in application PreeditEnabledByDefault=True # Show Input Method Information when switch input method ShowInputMethodInformation=True # Show Input Method Information when changing focus showInputMethodInformationWhenFocusIn=False # Show compact input method information CompactInputMethodInformation=True # Show first input method information ShowFirstInputMethodInformation=True # Default page size DefaultPageSize=5 # Override Xkb Option OverrideXkbOption=False # Custom Xkb Option CustomXkbOption= # Force Enabled Addons EnabledAddons= # Force Disabled Addons DisabledAddons= # Preload input method to be used by default PreloadInputMethod=True ''; xdg.configFile."fcitx5/profile".force = true; xdg.configFile."fcitx5/profile".text = '' [Groups/0] # Group Name Name="Group 1" # Layout Default Layout=us # Default Input Method DefaultIM=mozc [Groups/0/Items/0] # Name Name=keyboard-us # Layout Layout= [Groups/0/Items/1] # Name Name=mozc # Layout Layout= [GroupOrder] 0="Group 1" ''; xdg.configFile."fcitx5/conf/classicui.conf".force = true; xdg.configFile."fcitx5/conf/classicui.conf".text = '' # Vertical Candidate List Vertical Candidate List=False # Use Per Screen DPI PerScreenDPI=True # Use mouse wheel to go to prev or next page WheelForPaging=True # Font Font="Noto Sans CJK JP 11" # Menu Font MenuFont="Noto Sans CJK JP 11" # Tray Font TrayFont="Noto Sans CJK JP Medium 11" # Tray Label Outline Color TrayOutlineColor=#000000 # Tray Label Text Color TrayTextColor=#ffffff # Prefer Text Icon PreferTextIcon=False # Show Layout Name In Icon ShowLayoutNameInIcon=True # Use input method language to display text UseInputMethodLangaugeToDisplayText=True # Theme Theme=default ''; xdg.configFile."fcitx5/conf/clipboard.conf".force = true; xdg.configFile."fcitx5/conf/clipboard.conf".text = '' # Trigger Key TriggerKey= # Paste Primary PastePrimaryKey= # Number of entries Number of entries=5 ''; xdg.configFile."fcitx5/conf/mozc.conf".force = true; xdg.configFile."fcitx5/conf/mozc.conf".text = '' # Initial Mode InitialMode=Hiragana # Vertical candidate list Vertical=True # Expand Usage (Requires vertical candidate list) ExpandMode="On Focus" # Fix embedded preedit cursor at the beginning of the preedit PreeditCursorPositionAtBeginning=False # Hotkey to expand usage ExpandKey=Control+Alt+H ''; xdg.configFile."fcitx5/conf/notifications.conf".force = true; xdg.configFile."fcitx5/conf/notifications.conf".text = '' # Hidden Notifications HiddenNotifications= ''; xdg.configFile."fcitx5/conf/unicode.conf".force = true; xdg.configFile."fcitx5/conf/unicode.conf".text = '' # Trigger Key TriggerKey= ''; xdg.configFile."ranger/rc.conf".text = '' set line_numbers absolute set padding_right false set vcs_aware true set show_hidden true set confirm_on_delete always set save_console_history false set mouse_enabled false set tilde_in_titlebar true alias r rename alias d delete map DD shell trash %s set use_preview_script true set preview_files true set preview_images true set preview_images_method kitty ''; xdg.configFile."fish/config.fish".text = '' set -U fish_greeting "" export PATH="$HOME/.deno/bin:$HOME/.cargo/bin:$HOME/.yarn/bin:$HOME/.local/bin:$HOME/.go/bin:$PATH" export GOPATH="$HOME/.go" export SSH_AUTH_SOCK="$XDG_RUNTIME_DIR/ssh-agent.socket" export TERMCMD="kitty --single-instance" # Required to make gpg-agent work in cases like git commit export GPG_TTY=(tty) # Add color to man pages set -x -U LESS_TERMCAP_md (printf "\e[01;31m") set -x -U LESS_TERMCAP_me (printf "\e[0m") set -x -U LESS_TERMCAP_se (printf "\e[0m") set -x -U LESS_TERMCAP_so (printf "\e[01;44;30m") set -x -U LESS_TERMCAP_ue (printf "\e[0m") set -x -U LESS_TERMCAP_us (printf "\e[01;32m") # Always use the default keybindings in fish fish_default_key_bindings # Convert unnecessarily large wav files to flac function wav2flac set ORIGINAL_SIZE (du -hs | cut -f1) fd -e wav -x ffmpeg -i "{}" -loglevel quiet -stats "{.}.flac" fd -e wav -X trash set NEW_SIZE (du -hs | cut -f1) echo "Done. Reduced file size from $ORIGINAL_SIZE to $NEW_SIZE" end # Convert wav/flac to opus function opus set ORIGINAL_SIZE (du -hs | cut -f1) fd -e wav -e flac -x ffmpeg -i "{}" -c:a libopus -b:a 128K -loglevel quiet -stats "{.}.opus" fd -e wav -e flac -X rm -I set NEW_SIZE (du -hs | cut -f1) echo "Done. Reduced file size from $ORIGINAL_SIZE to $NEW_SIZE" end # Always use kitty ssh since it's our default terminal if string match -qe -- "/dev/pts/" (tty) alias ssh="kitty +kitten ssh" end # if status is-login # if test -z "$DISPLAY" -a "$XDG_VTNR" = 1 # exec Hyprland # end # end ''; gtk = { enable = true; cursorTheme = { package = pkgs.phinger-cursors; name = "phinger-cursors"; }; gtk3.extraConfig = { gtk-decoration-layout = "menu:"; gtk-xft-antialias = 1; gtk-xft-hinting = 1; gtk-xft-hintstyle = "hintfull"; gtk-xft-rgba = "rgb"; gtk-recent-files-enabled = false; }; iconTheme = { package = pkgs.fluent-icon-theme; name = "Fluent"; }; }; programs.kitty = { enable = true; settings = { enable_audio_bell = false; allow_remote_control = true; dynamic_background_opacity = true; background_opacity = "0.95"; close_on_child_death = true; cursor_blink_interval = 0; wayland_titlebar_color = "background"; listen_on = "unix:/tmp/kitty"; open_url_with = "librewolf"; window_padding_width = 5; tab_bar_margin_width = 5; }; }; xdg.configFile."kitty/diff.conf".text = '' map d scroll_to next-page map u scroll_to prev-page map g scroll_to start map G scroll_to end ''; programs.bat = { enable = true; }; programs.swaylock = { package = pkgs."swaylock-effects"; settings = { show-keyboard-layout = true; daemonize = true; effect-blur = "5x2"; clock = true; indicator = true; font-size = 25; indicator-radius = 85; indicator-thickness = 16; screenshots = true; fade-in = 1; }; }; services.dunst = { enable = true; settings = { global = { geometry = "1870x5-25+45"; width = 350; separator_height = 5; padding = 24; horizontal_padding = 24; frame_width = 3; idle_threshold = 120; alignment = "center"; word_wrap = "yes"; transparency = 5; format = "%s: %b"; markup = "full"; min_icon_size = 128; max_icon_size = 128; }; }; }; programs.waybar = { enable = true; package = hyprland.packages."x86_64-linux".waybar-hyprland; settings = { mainBar = { layer = "bottom"; position = "top"; height = 30; modules-left = [ "hyprland/window" ]; modules-center = [ "wlr/workspaces" ]; modules-right = [ "tray" "wireplumber" "backlight" "battery" "clock" ]; }; }; }; programs.zathura = { enable = true; options = { guioptions = "v"; adjust-open = "width"; statusbar-basename = true; render-loading = false; scroll-step = 120; }; }; programs.feh = { enable = true; keybindings = { toggle_actions = null; toggle_aliasing = null; toggle_caption = null; toggle_filenames = "d"; toggle_exif = null; save_filelist = null; toggle_fixed_geometry = "g"; toggle_pause = "h"; toggle_info = null; toggle_keep_vp = null; toggle_menu = null; next_img = [ "k" "Right" ]; toggle_pointer = "a"; prev_img = [ "j" "Left" ]; quit = "q"; reload_image = null; save_image = null; toggle_fullscreen = "f"; size_to_image = "w"; close = null; jump_random = "z"; prev_dir = null; next_dir = null; orient_3 = null; orient_1 = null; flip = null; mirror = null; action_0 = null; action_1 = null; action_2 = null; action_3 = null; action_4 = null; action_5 = null; action_6 = null; action_7 = null; action_8 = null; action_9 = null; jump_first = "J"; jump_last = "K"; jump_fwd = "H"; jump_back = "L"; reload_plus = null; reload_minus = null; remove = null; delete = null; scroll_left = "b"; scroll_right = "n"; scroll_up = [ "u" "Up" ]; scroll_down = [ "d" "Down" ]; scroll_left_page = null; scroll_right_page = null; scroll_up_page = null; scroll_down_page = null; render = null; zoom_in = "h"; zoom_out = "l"; zoom_default = "o"; zoom_fit = null; zoom_fill = "p"; menu_close = null; menu_up = null; menu_down = null; menu_parent = null; menu_child = null; menu_select = null; toggle_auto_zoom = "m"; }; }; services.mpd = { enable = true; extraConfig = '' auto_update "yes" ''; }; programs.ncmpcpp = { enable = true; bindings = [ { key = "mouse"; command = "dummy"; } { key = "h"; command = ["previous_column" "jump_to_parent_directory"]; } { key = "j"; command = "scroll_down"; } { key = "k"; command = "scroll_up"; } { key = "l"; command = [ "next_column" "enter_directory" "play_item"]; } { key = "H"; command = [ "select_item" "scroll_down"]; } { key = "J"; command = ["move_sort_order_down" "move_selected_items_down"]; } { key = "K"; command = ["move_sort_order_up" "move_selected_items_up"]; } { key = "L"; command = [ "select_item" "scroll_up"]; } { key = "'"; command = "remove_selection"; } { key = "ctrl-u"; command = "page_up"; } { key = "ctrl-d"; command = "page_down"; } { key = "u"; command = "page_up"; } { key = "d"; command = "page_down"; } { key = "n"; command = "next_found_item"; } { key = "N"; command = "previous_found_item"; } { key = "t"; command = "next_screen"; } { key = "g"; command = "move_home"; } { key = "G"; command = "move_end"; } { key = "w"; command = "next"; } { key = "b"; command = "previous"; } { key = ";"; command = "seek_forward"; } { key = ","; command = "seek_backward"; } { key = "f"; command = "apply_filter"; } { key = "i"; command = "select_item"; } { key = "x"; command = [ "delete_playlist_items" "delete_browser_items" "delete_stored_playlist" ]; } { key = "U"; command = "update_database"; } { key = "m"; command = "add_random_items"; } ]; settings = { ncmpcpp_directory = "~/.config/ncmpcpp"; user_interface = "alternative"; autocenter_mode = "yes"; allow_for_physical_item_deletion = "no"; mouse_support = "no"; execute_on_song_change = "~/.config/mpd/mpdnotify"; mpd_crossfade_time = 3; }; }; programs.lf = { enable = true; }; programs.rofi = { enable = true; package = pkgs.rofi-wayland; cycle = false; extraConfig = { modi = "drun,filebrowser"; font = "Noto Sans CJK JP 12"; show-icons = true; bw = 0; display-drun = ""; display-window = ""; display-combi = ""; icon-theme = "Papirus"; terminal = "kitty"; drun-match-fields = "name"; drun-display-format = "{name}"; me-select-entry = ""; me-accept-entry = "MousePrimary"; }; }; services.gpg-agent = { enable = true; pinentryFlavor = "curses"; defaultCacheTtl = 43200; maxCacheTtl = 43200; }; programs.gpg = { enable = true; # homedir = "${config.xdg.dataHome}/gnupg" settings = { personal-digest-preferences = "SHA512"; cert-digest-algo = "SHA512"; cipher-algo = "AES256"; default-preference-list = "SHA512 SHA384 SHA256 SHA224 AES256 AES192 AES CAST5 ZLIB BZIP2 ZIP Uncompressed"; personal-cipher-preferences = "TWOFISH CAMELLIA256 AES 3DES"; throw-keyids = true; keyid-format = "0xlong"; with-fingerprint = true; }; }; programs.neovim = { enable = true; extraConfig = '' filetype plugin indent on set undofile set spell set number set clipboard=unnamedplus set fileencoding=utf-8 " Ensure that we always save files as utf-8 set fileencodings=utf-8,sjis " Automatically open shiftjis files with their proper encoding set spelllang=en_us,cjk " Don't show errors for CJK characters set noshowmode " Disable the --MODE-- text (enable if not using the status line) set mouse=a set ignorecase " By default use case-insensitive search (combine with smartcase) set smartcase " Make search case-sensitive when using capital letters set scrolloff=1 " The minimal number of rows to show when scrolling up/down set sidescrolloff=5 " The minimal number of columns to show when scrolling left/right set tabstop=4 " Show a tab character as 4 spaces set softtabstop=0 " Edit soft tabs as if they're regular spaces set shiftwidth=4 " Make autoindent appear as 4 spaces map imap map <2-MiddleMouse> imap <2-MiddleMouse> map <3-MiddleMouse> imap <3-MiddleMouse> map <4-MiddleMouse> imap <4-MiddleMouse> highlight Search ctermbg=240 ctermfg=255 highlight IncSearch ctermbg=255 ctermfg=240 let mapleader = ' ' nnoremap e :set nu! nnoremap t :OverCommandLine%s/ nnoremap a :Vexplore nnoremap s :Sexplore nnoremap d :Explore nnoremap f :Files nnoremap g :set hlsearch! nnoremap j :Buffers nnoremap k :NERDTreeToggleVCS nnoremap l :Rg nnoremap ; w vnoremap y:silent !notify-send -t 4000 "成果" "$(tango '0')": autocmd BufNewFile,BufRead *.ecr setlocal syntax=html autocmd BufWritePre,FileWritePre * silent! call mkdir(expand(':p:h'), 'p') ''; plugins = with pkgs.vimPlugins; [ { plugin = nvim-tree-lua; type = "lua"; config = '' require("nvim-tree").setup() ''; } { plugin = indent-blankline-nvim; type = "lua"; config = '' require("indent_blankline").setup() ''; } { plugin = barbar-nvim; type = "lua"; config = '' vim.g.barbar_auto_setup = false require'barbar'.setup { auto_hide = true, sidebar_filetypes = { NvimTree = true, }, } ''; } { plugin = gitsigns-nvim; type = "lua"; config = '' require('gitsigns').setup() ''; } { plugin = nvim-web-devicons; type = "lua"; } { plugin = nvim-scrollbar; type = "lua"; config = ''require("scrollbar").setup()''; } { plugin = nvim-base16; type = "lua"; config = "vim.cmd('colorscheme base16-monokai')"; } { plugin = lualine-nvim; type = "lua"; config = "require('lualine').setup()"; } { plugin = nvim-cursorline; type = "lua"; config = '' require('nvim-cursorline').setup { cursorline = { enable = false, }, cursorword = { enable = true, min_length = 3, hl = { underline = true }, } } ''; } { plugin = comment-nvim; type = "lua"; config = ''require('Comment').setup()''; } { plugin = plenary-nvim; type = "lua"; } { plugin = telescope-nvim; type = "lua"; } { plugin = clipboard-image-nvim; type = "lua"; } { plugin = vimtex; config = '' " Disable all keybinds so we can define our own let g:vimtex_mappings_enabled = 0 let g:vimtex_imaps_enabled = 0 let g:vimtex_view_method = 'zathura' let g:vimtex_compiler_latexmk = {'build_dir': '.tex'} " Set the normal keybinds nnoremap f (vimtex-view) nnoremap g (vimtex-compile) nnoremap d (vimtex-env-delete) nnoremap c (vimtex-env-change) ''; } vim-caddyfile vim-graphql vim-pug vim-prisma vim-javascript vim-jsx-pretty vim-vue vim-over vim-endwise rust-vim ]; }; editorconfig = { enable = true; settings = { "*" = { charset = "utf-8"; end_of_line = "lf"; insert_final_newline = true; indent_size = 2; indent_style = "space"; trim_trailing_whitespace = true; }; "*.md" = { indent_style = "tab"; }; "Makefile" = { indent_style = "tab"; indent_size = 4; }; "*.html" = { indent_style = "tab"; indent_size = 4; }; "*.go" = { indent_style = "tab"; indent_size = 4; }; }; }; xdg.configFile."tig/config".text = '' color cursor black green bold color title-focus black blue bold color title-blur black blue bold ''; programs.mpv = { enable = true; config = { screenshot-format = "png"; profile = "gpu-hq"; scale = "ewa_lanczossharp"; cscale = "ewa_lanczossharp"; video-sync = "display-resample"; interpolation = true; tscale = "oversample"; sub-auto = "fuzzy"; sub-font = "Noto Sans CJK JP Medium"; sub-blur = 10; sub-file-paths = "subs:subtitles:字幕"; fullscreen = "yes"; title = "\${filename} - mpv"; script-opts = "osc-title=\${filename},osc-boxalpha=150,osc-showfullscreen=no,osc-boxvideo=yes"; osc = "no"; osd-on-seek = "no"; osd-bar = "no"; osd-bar-w = 30; osd-bar-h = "0.2"; osd-duration = 750; really-quiet = "yes"; }; scripts = [ pkgs.mpvScripts.thumbnail ]; }; programs.git = { enable = true; extraConfig = { include = { path = "~/.gituser"; }; commit = { gpgsign = true; }; core = { editor = "nvim"; autocrlf = false; quotePath = false; }; web = { browser = "librewolf"; }; push = { default = "simple"; }; branch = { autosetuprebase = "always"; }; init = { defaultBranch = "master"; }; rerere = { enabled = true; }; color = { ui = true; }; alias = { contrib = "shortlog -n -s"; remotes = "remote -v"; praise = "blame"; verify = "log --show-signature"; }; "color \"diff-highlight\"" = { oldNormal = "red bold"; oldHighlight = "red bold"; newNormal = "green bold"; newHighlight = "green bold"; }; "color \"diff\"" = { meta = "yellow"; frag = "magenta bold"; commit = "yellow bold"; old = "red bold"; new = "green bold"; whitespace = "red reverse"; }; }; diff-so-fancy = { enable = true; }; }; services.udiskie.enable = true; programs.qutebrowser = { enable = true; package = pkgs.qutebrowser-qt6; extraConfig = '' # Mute tabs by default from qutebrowser.mainwindow import tabwidget tabwidget.TabWidget.MUTE_STRING = "" tabwidget.TabWidget.AUDIBLE_STRING = "[A]" # Don't close while browsing / downloading c.confirm_quit = ['multiple-tabs', 'downloads'] # Restore previous tabs c.session.lazy_restore = True # Use ranger as the file selector c.fileselect.handler = 'external' c.fileselect.folder.command = ['kitty', '-e', 'ranger', '--choosedir={}'] c.fileselect.multiple_files.command = ['kitty', '-e', 'ranger', '--choosefiles={}'] c.fileselect.single_file.command = ['kitty', '-e', 'ranger', '--choosefile={}'] # Better context menu colors c.colors.contextmenu.disabled.fg = '#808080' c.colors.contextmenu.menu.bg = '#353535' c.colors.contextmenu.menu.fg = '#ffffff' c.colors.contextmenu.selected.bg = '#909090' # Use spellcheck c.spellcheck.languages = ["en-US"] # Chromium flags c.qt.args = ["disable-backing-store-limit", "enable-accelerated-video-decode", "disable-gpu-driver-bug-workarounds"] c.qt.chromium.low_end_device_mode = 'never' # Make new tab position more sane c.tabs.new_position.unrelated = 'next' # Download settings c.downloads.location.directory = "$HOME/Downloads" c.downloads.location.prompt = False c.downloads.position = "bottom" c.downloads.remove_finished = 5000 # Only show tabs when multiple are open c.tabs.show = "multiple" # Don't switch tabs with mouse c.tabs.mousewheel_switching = False # Edit text with neovim c.editor.command = ['kitty', '-e', 'nvim', '{}'] # Use J/K for prev/next config.bind('J', 'tab-prev') config.bind('K', 'tab-next') # Use F12 for devtools config.bind('', 'devtools') # Use zb to delete bookmarks config.bind('zb', 'bookmark-del') # Increase the default scroll offset of j/k # NOTE: Unfortunately this breaks websites that use their own keybinds for j/k/etc # config.bind('j', 'run-with-count 5 scroll down') # config.bind('k', 'run-with-count 5 scroll up') # NOTE: Use with smooth smooth scrolling enabled to scroll smoothly # config.bind('d', 'run-with-count 12 scroll down') # config.bind('u', 'run-with-count 12 scroll up') # Use d/u to scroll down/up config.bind('d', 'scroll-page 0 0.5') config.bind('u', 'scroll-page 0 -0.5') config.bind('D', 'scroll-page 0 0.5') config.bind('U', 'scroll-page 0 -0.5') # Use alt+left/right to go back/forward config.bind('', 'back') config.bind('', 'forward') # Use x to close tabs and X to undo config.bind('x', 'tab-close') config.bind('X', 'undo') # Toggle tab visibility for more screen space config.bind('st', 'config-cycle tabs.show multiple switching') # Easily change the position of tabs config.bind('sTh', 'set tabs.position left') config.bind('sTj', 'set tabs.position bottom') config.bind('sTk', 'set tabs.position top') config.bind('sTl', 'set tabs.position right') # Don't paste something by accident config.unbind('pp', mode='normal') config.unbind('pP', mode='normal') config.unbind('Pp', mode='normal') config.unbind('PP', mode='normal') config.unbind('wp', mode='normal') config.unbind('wP', mode='normal') # Easily enter account information # NOTE: I re-evaluated pass when I was focusing on a terminal-centric workflow. config.bind('zl', 'spawn --userscript qute-pass') config.bind('zpl', 'spawn --userscript qute-pass --password-only') config.bind('zol', 'spawn --userscript qute-pass --otp-only') # Support previous/next tab with traditional keybinds config.bind('', 'tab-prev') config.bind('', 'tab-next') # Hide the status bar except under exceptional circumstances # NOTE: This broke more things than not, which is why I ultimately decided # to always use the status bar. More information can be found in the # following discussion: https://github.com/qutebrowser/qutebrowser/issues/2236 # config.bind('o', 'set statusbar.show always;; set-cmd-text -s :open') # config.bind('O', 'set statusbar.show always;; set-cmd-text -s :open -t') # config.bind('T', 'set statusbar.show always;; set-cmd-text -sr :tab-focus') # config.bind(':', 'set statusbar.show always;; set-cmd-text :') # config.bind('/', 'set statusbar.show always;; set-cmd-text /') # config.bind('', 'mode-enter normal;; set statusbar.show in-mode', mode='command') # config.bind('', 'command-accept;; set statusbar.show in-mode', mode='command') # Easily start a new temporary container config.bind(';s', 'hint links spawn ~/.local/bin/tmp {hint-url}') # Open the current tab / selected link in mpv config.bind('zM', 'spawn mpv --force-window=immediate {url}') config.bind('zm', 'hint links spawn mpv --force-window=immediate {hint-url}') # Automatically mute tabs c.content.mute = True # Use proxy websites for popular services config.bind('zu', 'hint links spawn -u untrack-url -O {hint-url}') # Enable expected permissions to avoid websites asking every time c.content.persistent_storage = True c.content.notifications.enabled = True c.content.register_protocol_handler = True # Hide the window title bar on GNOME # NOTE: This is no longer necessary since GNOME has an extension called # pixel-saver that # automatically handles this for us, and without # the downsides of not having a window bar. # c.window.hide_decoration = True # Close qutebrowser when there are no tabs left c.tabs.last_close = "close" # Don't automatically enter/leave insert mode # NOTE: This was originally done to prevent insert mode from prematurely exiting # in certain # cases (such as mouse usage), although keeping auto functionality # seems to be more useful # long-term. c.input.insert_mode.auto_enter = False c.input.insert_mode.auto_leave = False # Prioritize Japanese content (en-US is necessary to avoid breaking things) c.content.headers.accept_language = 'ja-JP,en-US' ''; }; xdg.configFile."hypr/focusmaster.sh".source = ./focusmaster.sh; xdg.configFile."hypr/swapmaster.sh".source = ./swapmaster.sh; xdg.configFile."hypr/tags.sh".source = ./tags.sh; xdg = { userDirs = { enable = true; }; }; home.stateVersion = "22.11"; }]; }