feat: Added more zen search options and khal views
All checks were successful
Flake checker / Build Nix targets (push) Successful in 9m24s
All checks were successful
Flake checker / Build Nix targets (push) Successful in 9m24s
This commit is contained in:
@@ -74,12 +74,6 @@
|
|||||||
urls = [
|
urls = [
|
||||||
{
|
{
|
||||||
template = "https://mynixos.com/search?q={searchTerms}";
|
template = "https://mynixos.com/search?q={searchTerms}";
|
||||||
params = [
|
|
||||||
{
|
|
||||||
name = "query";
|
|
||||||
value = "searchTerms";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
||||||
@@ -91,12 +85,6 @@
|
|||||||
urls = [
|
urls = [
|
||||||
{
|
{
|
||||||
template = "https://home-manager-options.extranix.com/?query={searchTerms}&release=master";
|
template = "https://home-manager-options.extranix.com/?query={searchTerms}&release=master";
|
||||||
params = [
|
|
||||||
{
|
|
||||||
name = "query";
|
|
||||||
value = "searchTerms";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
definedAliases = ["@hm"];
|
definedAliases = ["@hm"];
|
||||||
@@ -105,17 +93,32 @@
|
|||||||
name = "NixVim";
|
name = "NixVim";
|
||||||
urls = [
|
urls = [
|
||||||
{
|
{
|
||||||
template = "https://nix-community.github.io/nixvim/search/?query={searchTerms}";
|
template = "https://nix-community.github.io/nixvim/search";
|
||||||
params = [
|
params = [
|
||||||
{
|
{
|
||||||
name = "query";
|
name = "query";
|
||||||
value = "searchTerms";
|
value = "{searchTerms}";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
definedAliases = ["@nv"];
|
definedAliases = ["@nv"];
|
||||||
};
|
};
|
||||||
|
lib = {
|
||||||
|
name = "Lib.rs";
|
||||||
|
urls = [
|
||||||
|
{
|
||||||
|
template = "https://lib.rs/search";
|
||||||
|
params = [
|
||||||
|
{
|
||||||
|
name = "q";
|
||||||
|
value = "{searchTerms}";
|
||||||
|
}
|
||||||
|
];
|
||||||
|
}
|
||||||
|
];
|
||||||
|
definedAliases = ["@lib"];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
pins = {
|
pins = {
|
||||||
|
|||||||
@@ -1,5 +1,15 @@
|
|||||||
{pkgs, ...}: {
|
{pkgs, ...}: {
|
||||||
programs.khal.enable = true;
|
programs.khal = {
|
||||||
|
enable = true;
|
||||||
|
settings = {
|
||||||
|
default = {
|
||||||
|
# default_calendar = "fastmail";
|
||||||
|
};
|
||||||
|
view = {
|
||||||
|
agenda_event_format = "{calendar-color}{cancelled}{start-end-time-style} {title}{repeat-symbol}{reset}";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
programs.qcal.enable = true;
|
programs.qcal.enable = true;
|
||||||
programs.vdirsyncer.enable = true;
|
programs.vdirsyncer.enable = true;
|
||||||
services.vdirsyncer.enable = true;
|
services.vdirsyncer.enable = true;
|
||||||
|
|||||||
Reference in New Issue
Block a user