feat: changed stuff, to lazy to say what

This commit is contained in:
Nick 2025-05-24 20:21:50 -05:00
parent a0de2dba92
commit 3c230de4fd
17 changed files with 118 additions and 181 deletions

View file

@ -128,6 +128,17 @@ in
];
keyword = aliases.name2;
}
{
name = "${instances.glance.label} (Local)";
url = "http://${instances.web.localhost.address0}:${toString instances.glance.ports.port0}";
tags = [
"glance"
"dashboard"
"weather"
"podcasts"
];
keyword = instances.glance.label;
}
{
name = "${instances.ollama.label} (Server)";
url = "https://${instances.ollama.subdomain}.${instances.web.domains.url0}";

View file

@ -8,6 +8,15 @@
{ template = "https://sci-hub.ee/{searchTerms}"; }
];
};
"Anna's Archive" = {
definedAliases = [
"@aa"
];
icon = ./icons/aa.png;
urls = [
{ template = "https://annas-archive.org/scidb/{searchTerms}"; }
];
};
"Wikipedia" = {
definedAliases = [
"@wi"

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.4 KiB

0
modules/home/gui/apps/tools/lingot/default.nix Normal file → Executable file
View file

View file

@ -39,10 +39,9 @@ let
"4, workspace, 4"
"5, workspace, 5"
# Windows
"X, killactive"
"Tab, killactive"
"F, togglefloating"
"Backspace, layoutmsg, togglesplit"
"Tab, fullscreen, 0"
# Window Focus
"Left, movefocus, l"
"Up, movefocus, u"
@ -65,6 +64,7 @@ let
# Super+shift binds
"S, exec, flameshot gui"
"period, exec, emote"
"Tab, fullscreen, 0"
# "Print, exec, grim -g \"$(slurp)\""
];
superCtrlBinds = builtins.map (x: "SUPER CTRL, " + x) [

View file

@ -1,3 +0,0 @@
{
services.easyeffects.enable = false;
}

View file

@ -1,11 +0,0 @@
{
pkgs,
...
}:
{
home.packages = builtins.attrValues {
inherit (pkgs)
jamesdsp
;
};
}

View file

View file

@ -1,50 +0,0 @@
{
config,
flake,
...
}:
let
inherit (flake.config.aesthetics.themes) currentTheme palettes fonts;
inherit (flake.config.people) user0 user1 user2;
user = config.home.username;
themeLogic =
if user == user0 then
currentTheme.theme0
else if user == user1 then
currentTheme.theme1
else if user == user2 then
currentTheme.theme2
else
currentTheme.theme0;
el = palettes.${themeLogic}.colours;
in
{
font-size = fonts.sizes.desktop.size0;
hint-font = true;
background-color = "#${el.base02}";
outline-color = "#${el.base0E}";
prompt-color = "#${el.base0D}";
input-color = "#${el.base07}";
default-result-color = "#${el.base05}";
selection-color = "#${el.base0E}";
prompt-text = "Summon: ";
width = 400;
height = 400;
outline-width = 1;
border-width = 0;
padding-top = 10;
padding-bottom = 10;
padding-left = 10;
padding-right = 10;
corner-radius = 10;
drun-launch = true;
}

View file

@ -1,16 +0,0 @@
{
config,
flake,
...
}:
let
configPath = ./config;
settingsPath = import (configPath + /settings.nix) { inherit config flake; };
in
{
programs.tofi = {
enable = true;
settings = settingsPath;
};
}