feat: changed stuff

This commit is contained in:
Nick 2024-12-06 21:48:52 -06:00
parent 65fb80d1cb
commit 0fd351c9cb
15 changed files with 148 additions and 10 deletions

View file

@ -44,6 +44,7 @@ in {
misc-android
misc-desktop
misc-internet
misc-tracking
;
};
};

View file

@ -11,6 +11,18 @@ in {
tags = ["discord" "development" "portal" "bot"];
keyword = "Discord";
}
{
name = "Elm-UI";
url = "https://package.elm-lang.org/packages/mdgriffith/elm-ui/latest/";
tags = ["elm-ui" "elm" "ui"];
keyword = "Elm";
}
{
name = "Elm Examples";
url = "https://elm-lang.org/examples";
tags = ["elm" "elm" "examples"];
keyword = "Elm";
}
{
name = "GitHub";
url = "https://github.com/BRBWaffles";

View file

@ -12,6 +12,12 @@ in {
name = "Self Hosted";
toolbar = false;
bookmarks = [
{
name = "Elm-Land Server";
url = "http://localhost:1234";
tags = ["elm-land" "elm" "land"];
keyword = "Website";
}
{
name = instances.forgejo.label;
url = "https://${instances.forgejo.subdomain}.${instances.web.domains.url0}";
@ -56,7 +62,7 @@ in {
}
{
name = "${instances.ollama.label} (Server)";
url = "https://${instances.ollama.subdomain}.${instances.web.domains.url1}";
url = "https://${instances.ollama.subdomain}.${instances.web.domains.url0}";
tags = ollamaTags;
keyword = instances.ollama.label;
}

View file

@ -14,6 +14,12 @@
tags = ["doordash" "door" "dash" "food"];
keyword = "Amazon";
}
{
name = "Fiverr";
url = "https://www.fiverr.com";
tags = ["fiverr" "graphic" "design"];
keyword = "Five";
}
{
name = "FTY Supplies";
url = "https://fytsupplies.ca";

View file

@ -6,21 +6,30 @@
}: let
inherit (flake.config.people) user0;
in {
programs.firefox = {
programs.firefox = let
configPath = ./config;
in {
enable = true;
package = pkgs.firefox;
profiles = {
${user0} = let
configPath = ./config;
in
${user0} =
{
isDefault = true;
id = 0;
}
// (import (configPath + /bookmarks) {inherit flake;})
// (import (configPath + /extensions) {inherit nur;})
// (import (configPath + /search) {inherit flake;})
// (import (configPath + /settings))
// (import (configPath + /themes));
testing =
{
isDefault = false;
id = 1;
}
// (import (configPath + /bookmarks) {inherit flake;})
// (import (configPath + /search) {inherit flake;})
// (import (configPath + /themes));
};
};
}

View file

@ -3,6 +3,7 @@
editor = {
mouse = true;
auto-format = true;
soft-wrap = true;
auto-save = true;
line-number = "relative";
lsp = {

View file

@ -17,6 +17,7 @@
protonvpn-gui
qbittorrent
tor-browser
nicotine-plus
;
};
}

View file

@ -15,5 +15,10 @@
command = "editor.action.formatDocument";
when = "editorHasDocumentFormattingProvider && editorTextFocus && !editorReadonly && !inCompositeEditor";
}
{
key = "ctrl+shift+tab";
command = "editor.action.indentationToSpaces";
when = "textInputFocus";
}
];
}

View file

@ -19,5 +19,6 @@
"editor.multiCursorLimit" = 700000;
"elmLS.disableElmLSDiagnostics" = true;
"elmLS.elmReviewDiagnostics" = "warning";
"editor.wordWrap" = true;
};
}