Fix remaining deprecation warnings

- Fixed MySQL -> MariaDB package name
- Fixed Kitty theme -> themeFile in tokyo-night.nix
- Fixed Mako settings structure in tokyo-night.nix
- Converted individual mako options to settings.* structure
This commit is contained in:
theArctesian
2025-09-29 19:23:17 -07:00
parent af8e5deb4a
commit 8ceb61f208
3 changed files with 26 additions and 22 deletions

View File

@@ -180,7 +180,7 @@ in
# Database clients
postgresql
mysql
mariadb
sqlite
redis
mongodb-tools

View File

@@ -185,16 +185,18 @@
# Mako notification theme
services.mako = {
backgroundColor = "#1e1e2e";
textColor = "#cdd6f4";
borderColor = "#cba6f7";
progressColor = "#cba6f7";
defaultTimeout = 5000;
borderRadius = 10;
borderSize = 2;
font = "JetBrainsMono Nerd Font 10";
padding = "10";
margin = "20";
settings = {
background-color = "#1e1e2e";
text-color = "#cdd6f4";
border-color = "#cba6f7";
progress-color = "#cba6f7";
default-timeout = 5000;
border-radius = 10;
border-size = 2;
font = "JetBrainsMono Nerd Font 10";
};
padding = "10";
margin = "20";
};
};

View File

@@ -93,7 +93,7 @@ in
# Kitty theme
programs.kitty = {
theme = "Tokyo Night";
themeFile = "Tokyo Night";
settings = {
background = "#1a1b26";
foreground = "#c0caf5";
@@ -275,16 +275,18 @@ in
# Mako notification theme
services.mako = {
backgroundColor = "#1a1b26";
textColor = "#c0caf5";
borderColor = "#7aa2f7";
progressColor = "#7aa2f7";
defaultTimeout = 5000;
borderRadius = 10;
borderSize = 2;
font = "JetBrainsMono Nerd Font 10";
padding = "10";
margin = "20";
settings = {
background-color = "#1a1b26";
text-color = "#c0caf5";
border-color = "#7aa2f7";
progress-color = "#7aa2f7";
default-timeout = 5000;
border-radius = 10;
border-size = 2;
font = "JetBrainsMono Nerd Font 10";
padding = "10";
margin = "20";
};
};
};