diff --git a/modules/home/browsers/librewolf.nix b/modules/home/browsers/librewolf.nix index bb5332b..2781eb8 100644 --- a/modules/home/browsers/librewolf.nix +++ b/modules/home/browsers/librewolf.nix @@ -34,6 +34,7 @@ libredirect multi-account-containers clearurls + istilldontcareaboutcookies hoppscotch ]; bookmarks = {}; diff --git a/modules/home/kitty.nix b/modules/home/kitty.nix index ed26632..6d4a186 100644 --- a/modules/home/kitty.nix +++ b/modules/home/kitty.nix @@ -8,8 +8,6 @@ programs.kitty = { enable = true; - shellIntegration.enableZshIntegration = true; - themeFile = "Catppuccin-Mocha"; font = { @@ -43,6 +41,10 @@ "alt+2" = "goto_tab 2"; "alt+3" = "goto_tab 3"; "alt+4" = "goto_tab 4"; + + ## Unbind + "ctrl+shift+left" = "no_op"; + "ctrl+shift+right" = "no_op"; }; }; } diff --git a/modules/home/packages.nix b/modules/home/packages.nix index 671c7ad..10831c7 100644 --- a/modules/home/packages.nix +++ b/modules/home/packages.nix @@ -1,12 +1,12 @@ {pkgs, ...}: { - xdg.mimeApps.enable = true; +xdg.mimeApps.enable = true; xdg.mimeApps.defaultApplications = - { - "inode/directory" = ["nemo.desktop"]; - "application/x-gnome-saved-search" = ["nemo.desktop"]; - "application/pdf" = ["okularApplication_pdf.desktop" "org.gnome.Evince.desktop"]; - "text/plain" = ["org.gnome.TextEditor.desktop"]; - } +{ + "inode/directory" = ["nemo.desktop"]; +"application/x-gnome-saved-search" = ["nemo.desktop"]; + "application/pdf" = ["okularApplication_pdf.desktop" "org.gnome.Evince.desktop"]; + "text/plain" = ["org.gnome.TextEditor.desktop"]; + } // builtins.listToAttrs (map (key: { name = "image/${key}"; value = ["vimiv.desktop"]; @@ -23,7 +23,6 @@ distrobox boxbuddy evince # gnome pdf viewer - eza # cool ls element-desktop # Matrix client fd # find replacement file # Show file information @@ -57,7 +56,7 @@ zenity wdisplays wireguard-tools - wtype +wtype # Wine stuff winetricks @@ -93,10 +92,5 @@ xdg-utils xxd alejandra - - # VPN - wireguard-tools - openconnect - networkmanager-openconnect ]; } diff --git a/modules/home/zsh.nix b/modules/home/zsh.nix index 8c63940..411b891 100644 --- a/modules/home/zsh.nix +++ b/modules/home/zsh.nix @@ -34,7 +34,6 @@ findw = "grep -rl"; pdf = "tdf"; open = "xdg-open"; - find = "fd"; l = "eza --icons -a --group-directories-first -1"; #EZA_ICON_SPACING=2 ll = "eza --icons -a --group-directories-first -1 --no-user --long"; @@ -72,11 +71,6 @@ # python piv = "python -m venv .venv"; psv = "source .venv/bin/activate"; - - # ssh - s = "kitten ssh"; - ssh = "kitten ssh"; - ossh = "ssh"; }; };