mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-09 21:34:38 -05:00
feat: tuning up
This commit is contained in:
parent
e7cac64fb7
commit
2c2c38225a
12 changed files with 85 additions and 40 deletions
|
@ -3,7 +3,7 @@ let
|
|||
"git"
|
||||
"gitlab"
|
||||
];
|
||||
gitlabURL = "https://gitlab.com/";
|
||||
gitlabURL = "https://gitlab.com";
|
||||
in
|
||||
{
|
||||
name = "Development";
|
||||
|
|
|
@ -139,29 +139,29 @@ in
|
|||
tags = ollamaTags;
|
||||
keyword = instances.ollama.label;
|
||||
}
|
||||
{
|
||||
name = "${instances.owncast.label} (Admin)";
|
||||
url = "http://${server.ip.address0}:${toString instances.owncast.ports.port0}/admin";
|
||||
tags = owncastTags;
|
||||
keyword = instances.owncast.label;
|
||||
}
|
||||
{
|
||||
name = "${instances.owncast.label} (Server)";
|
||||
url = "http://${instances.owncast.subdomain}.${instances.web.domains.url1}";
|
||||
tags = owncastTags;
|
||||
keyword = instances.owncast.label;
|
||||
}
|
||||
{
|
||||
name = instances.peertube.label;
|
||||
url = "https://${instances.peertube.subdomain}.${instances.web.domains.url3}";
|
||||
tags = [
|
||||
instances.peertube.name
|
||||
"peer"
|
||||
"tube"
|
||||
"uprootnutrition"
|
||||
];
|
||||
keyword = instances.peertube.label;
|
||||
}
|
||||
# {
|
||||
# name = "${instances.owncast.label} (Admin)";
|
||||
# url = "http://${server.ip.address0}:${toString instances.owncast.ports.port0}/admin";
|
||||
# tags = owncastTags;
|
||||
# keyword = instances.owncast.label;
|
||||
# }
|
||||
# {
|
||||
# name = "${instances.owncast.label} (Server)";
|
||||
# url = "http://${instances.owncast.subdomain}.${instances.web.domains.url1}";
|
||||
# tags = owncastTags;
|
||||
# keyword = instances.owncast.label;
|
||||
# }
|
||||
# {
|
||||
# name = instances.peertube.label;
|
||||
# url = "https://${instances.peertube.subdomain}.${instances.web.domains.url3}";
|
||||
# tags = [
|
||||
# instances.peertube.name
|
||||
# "peer"
|
||||
# "tube"
|
||||
# "uprootnutrition"
|
||||
# ];
|
||||
# keyword = instances.peertube.label;
|
||||
# }
|
||||
{
|
||||
name = "Router";
|
||||
url = "http://${instances.web.localhost.address2}";
|
||||
|
|
|
@ -41,7 +41,9 @@
|
|||
];
|
||||
icon = ./icons/nx.png;
|
||||
urls = [
|
||||
{ template = "https://searchix.alanpearce.eu/options/nixos/search?query={searchTerms}"; }
|
||||
{
|
||||
template = "https://search.nixos.org/options?channel=unstable&size=50&sort=relevance&type=packages&query={searchTerms}";
|
||||
}
|
||||
];
|
||||
};
|
||||
"Nix Packages" = {
|
||||
|
@ -50,7 +52,9 @@
|
|||
];
|
||||
icon = ./icons/nx.png;
|
||||
urls = [
|
||||
{ template = "https://searchix.alanpearce.eu/packages/nixpkgs/search?query={searchTerms}"; }
|
||||
{
|
||||
template = "https://search.nixos.org/packages?channel=unstable&from=0&size=50&sort=relevance&type=packages&query={searchTerms}";
|
||||
}
|
||||
];
|
||||
};
|
||||
"Nix Wiki" = {
|
||||
|
|
|
@ -23,12 +23,13 @@ in
|
|||
"workbench.colorTheme" = "Catppuccin Macchiato";
|
||||
"workbench.statusBar.visible" = false;
|
||||
"editor.multiCursorLimit" = 700000;
|
||||
"elmLS.disableElmLSDiagnostics" = true;
|
||||
"elmLS.elmReviewDiagnostics" = "warning";
|
||||
"editor.wordWrap" = "on";
|
||||
"editor.fontSize" = fonts.sizes.applications.size0;
|
||||
"editor.fontFamily" = "'${fonts.names.name0}', 'monospace', monospace";
|
||||
"terminal.integrated.fontSize" = fonts.sizes.applications.size0;
|
||||
"terminal.integrated.fontFamily" = "'${fonts.names.name0}', 'monospace', monospace";
|
||||
"editor.fontLigatures" = true;
|
||||
"elmLS.disableElmLSDiagnostics" = true;
|
||||
"elmLS.elmReviewDiagnostics" = "warning";
|
||||
"elmLS.elmReviewPath" = "/etc/profiles/per-user/nick/bin/elm-review";
|
||||
}
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
{
|
||||
flake,
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
|
@ -12,7 +11,7 @@ let
|
|||
languagesPath = import (configPath + /languages);
|
||||
lspPath = import (configPath + /lsp);
|
||||
terminalPath = import (configPath + /terminal) { inherit flake; };
|
||||
experimentalPath = import (configPath + /theme) { inherit config flake; };
|
||||
# experimentalPath = import (configPath + /theme) { inherit config flake; };
|
||||
gitPath = import (configPath + /git);
|
||||
miscPath = import (configPath + /misc) { inherit lib pkgs; };
|
||||
in
|
||||
|
@ -21,7 +20,7 @@ in
|
|||
languages = languagesPath;
|
||||
lsp = lspPath;
|
||||
terminal = terminalPath;
|
||||
experimental.theme_overrides = experimentalPath;
|
||||
# experimental.theme_overrides = experimentalPath;
|
||||
|
||||
}
|
||||
// assistantPath
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue