Changed some things ugh. McGill fonts, duckduckgo, delta.

This commit is contained in:
vorboyvo 2026-05-28 13:25:40 -04:00
parent bf225209d7
commit ff97f988e7
16 changed files with 14 additions and 3 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View file

@ -69,7 +69,7 @@
# dnssec = "true"; # dnssec = "true";
settings.Resolve = { settings.Resolve = {
Domains = [ "~." ]; Domains = [ "~." ];
FallbackDns = [ "9.9.9.9" "149.112.112.112" ]; # FallbackDns = [ "9.9.9.9" "149.112.112.112" ];
}; };
}; };

View file

@ -92,6 +92,7 @@
gthumb gthumb
anki anki
butterfly butterfly
deltachat-desktop
] ++ # Selection of graphical apps ] ++ # Selection of graphical apps
[ [
prismlauncher prismlauncher

View file

@ -9,8 +9,8 @@
isDefault = true; isDefault = true;
search = { search = {
force = true; force = true;
default = "EnCours"; default = "DuckDuckGo";
order = [ "EnCours" "DuckDuckGo" "Google" ]; order = [ "DuckDuckGo" "EnCours" "Google" ];
engines = { engines = {
"Nix Packages" = { "Nix Packages" = {
urls = [{ urls = [{

View file

@ -17,6 +17,7 @@ in
"battery" "battery"
"tray" "tray"
"sway/language" "sway/language"
"custom/weather"
"clock" "clock"
]; ];
"sway/workspaces" = { "sway/workspaces" = {
@ -87,6 +88,13 @@ in
tooltip-format = "{long}"; tooltip-format = "{long}";
on-click = ''swaymsg input "*" xkb_switch_layout next''; on-click = ''swaymsg input "*" xkb_switch_layout next'';
}; };
"custom/weather" = {
format = "{}°";
tooltip = true;
interval = 3600;
exec = "wttrbar";
return-type = "json";
};
clock = { clock = {
interval = 1; interval = 1;
format = "<span size='10pt' font='Red Hat Mono'>{:L%H:%M:%S %a %F}</span>"; format = "<span size='10pt' font='Red Hat Mono'>{:L%H:%M:%S %a %F}</span>";
@ -148,4 +156,6 @@ in
position = "top"; position = "top";
fonts = config.wayland.windowManager.sway.config.fonts; fonts = config.wayland.windowManager.sway.config.fonts;
}]; }];
home.packages = with pkgs; [wttrbar];
} }