feat: Added stuff to zen
All checks were successful
Flake checker / Build Nix targets (push) Successful in 9m28s

This commit is contained in:
2026-03-04 15:30:05 +05:30
parent 4f18892d1b
commit 7b86a1cb21
4 changed files with 44 additions and 5 deletions

View File

@@ -6,7 +6,6 @@
}: { }: {
home.packages = lib.optionals (device.is "ryu") [ home.packages = lib.optionals (device.is "ryu") [
pkgs.fluffychat pkgs.fluffychat
pkgs.fractal
# pkgs.quaternion # pkgs.quaternion
]; ];
} }

View File

@@ -11,7 +11,7 @@
programs.zen-browser.darwinDefaultsId = "org.mozilla.firefox.plist"; programs.zen-browser.darwinDefaultsId = "org.mozilla.firefox.plist";
programs.zen-browser = { programs.zen-browser = {
enable = true; enable = true;
profiles.default = { profiles.default = rec {
containersForce = true; containersForce = true;
containers = { containers = {
Personal = { Personal = {
@@ -65,6 +65,46 @@
sponsorblock sponsorblock
floccus 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]; nativeMessagingHosts = [pkgs.tridactyl-native];
policies = { policies = {

View File

@@ -289,7 +289,7 @@ in {
"core.keybinds" = { "core.keybinds" = {
config = { config = {
default_keybinds = true; default_keybinds = true;
neorg_leader = "<C-m>"; neorg_leader = "<C-i>";
}; };
}; };
"core.integrations.treesitter" = { "core.integrations.treesitter" = {

View File

@@ -42,8 +42,8 @@
}; };
}; };
in [ in [
inputs.nno.overlays.default
inputs.nixvim.overlays.default inputs.nixvim.overlays.default
vimPlugins inputs.nno.overlays.default
tree-sitter-grammars tree-sitter-grammars
vimPlugins
] ]