didnt fuck it

This commit is contained in:
2025-10-11 12:32:45 -06:00
parent 73ff35996b
commit 66c15c5574
3 changed files with 14 additions and 4 deletions

View File

@@ -1,7 +1,8 @@
{config, pkgs, ...}:
{config, pkgs, inputs, ...}:
{
services.currents = {
enable = true;
package = inputs.currents.packages.${pkgs.system}.currents-full;
weather = {
apiKey = "16722031ac8d5ec075344893fcbd41af";
location = "Denver, US";
@@ -22,7 +23,7 @@
temperature = {
high = 80.0;
highColor = "red";
low = 45;
low = 45.0;
lowColor = "cyan";
};
# humidity = {

View File

@@ -4,8 +4,16 @@
services.mako = {
enable = true;
settings = {
anchor = "top-center";
};
anchor = "top-center";
actions = true;
sort = "-time";
border-size = 3;
border-color = "#7fbbb3";
background-color = "#2b3339";
"urgency=low".border-color = "#a7c080";
"urgency=normal".border-color = "#7fbbb3";
"urgency=high".border-color = "#e67e80";
};
};
}