My Nix Configuration

[home.mako] switch to structured settings

pyrox.dev edaad0d2 ce1d4881

verified
Changed files
+16 -14
modules
home
services
+16 -14
modules/home/services/mako/default.nix
···
config.catppuccin.mako.enable = false;
config.services.mako = lib.mkIf cfg.enable {
enable = true;
-
actions = true;
-
defaultTimeout = 10000;
-
font = "IBM Plex Sans 14pt";
-
icons = true;
-
layer = "overlay";
-
# Vendored Catppuccin Theme(avoids IFD)
-
backgroundColor = "#1e1e2e";
-
textColor = "#cdd6f4";
-
borderColor = "#89b4fa";
-
progressColor = "over #313244";
-
extraConfig = ''
-
[urgency=high]
-
border-color=#fab387
-
'';
+
settings = {
+
font = "IBM Plex Sans 14pt";
+
# Vendored Catppuccin Theme(avoids IFD)
+
background-color = "#1e1e2e";
+
text-color = "#cdd6f4";
+
border-color = "#89b4fa";
+
progress-color = "over #313244";
+
+
actions = 1;
+
default-timeout = 10000;
+
icons = 1;
+
layer = "overlay";
+
"urgency=high" = {
+
border-color = "#fab387";
+
};
+
};
};
}