diff --git a/home/apps/matrix.nix b/home/apps/matrix.nix index 67b91ff7..4019f69d 100644 --- a/home/apps/matrix.nix +++ b/home/apps/matrix.nix @@ -6,7 +6,6 @@ }: { home.packages = lib.optionals (device.is "ryu") [ pkgs.fluffychat - pkgs.fractal # pkgs.quaternion ]; } diff --git a/home/apps/zen.nix b/home/apps/zen.nix index 65f7e7f7..498a14a6 100644 --- a/home/apps/zen.nix +++ b/home/apps/zen.nix @@ -11,7 +11,7 @@ programs.zen-browser.darwinDefaultsId = "org.mozilla.firefox.plist"; programs.zen-browser = { enable = true; - profiles.default = { + profiles.default = rec { containersForce = true; containers = { Personal = { @@ -65,6 +65,46 @@ sponsorblock floccus ]; + search = { + force = true; + default = "ddg"; + engines = { + mynixos = { + name = "My NixOS"; + urls = [ + { + template = "https://mynixos.com/search?q={searchTerms}"; + params = [ + { + name = "query"; + value = "searchTerms"; + } + ]; + } + ]; + + icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg"; + definedAliases = ["@nx"]; # Keep in mind that aliases defined here only work if they start with "@" + }; + }; + }; + pins = { + dashboard = { + id = "d163f090-67b7-47d2-8f76-7d638b9f742b"; + workspace = spaces.Personal.id; + url = "https://dashboard.darksailor.dev"; + isEssential = true; + position = 101; + }; + github = { + id = "db2f3e36-9279-4b8d-8b5d-52a90f34ea0d"; + workspace = spaces.Personal.id; + url = "https://github.com"; + isEssential = true; + position = 102; + }; + }; + pinsForce = true; }; nativeMessagingHosts = [pkgs.tridactyl-native]; policies = { diff --git a/neovim/default.nix b/neovim/default.nix index 3e3ae085..4f8a7263 100644 --- a/neovim/default.nix +++ b/neovim/default.nix @@ -289,7 +289,7 @@ in { "core.keybinds" = { config = { default_keybinds = true; - neorg_leader = ""; + neorg_leader = ""; }; }; "core.integrations.treesitter" = { diff --git a/neovim/overlays.nix b/neovim/overlays.nix index 24ce85e3..7bc7384c 100644 --- a/neovim/overlays.nix +++ b/neovim/overlays.nix @@ -42,8 +42,8 @@ }; }; in [ - inputs.nno.overlays.default inputs.nixvim.overlays.default - vimPlugins + inputs.nno.overlays.default tree-sitter-grammars + vimPlugins ]