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

@@ -4,6 +4,7 @@
obsidian obsidian
vscodium-fhs vscodium-fhs
vesktop vesktop
cursor-cli
]; ];
imports = [ imports = [
# ../../packages/fish/fish.nix # ../../packages/fish/fish.nix

View File

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

View File

@@ -5,6 +5,14 @@
enable = true; enable = true;
settings = { 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";
}; };
}; };
} }