upgrade to NixOs 25.05

This commit is contained in:
2025-05-26 20:08:04 +02:00
parent bec9559314
commit b5ace6ccb9
7 changed files with 60 additions and 36 deletions

View File

@ -69,7 +69,8 @@ in {
# fonts
noto-fonts
nerdfonts
nerd-fonts.fira-code
nerd-fonts.fira-mono
fira
];

View File

@ -12,18 +12,20 @@ in {
config = lib.mkIf cfg.enable {
services.mako = {
enable = true;
actions = true;
anchor = "top-right";
settings = {
actions = true;
anchor = "top-right";
borderRadius = 10;
borderSize = 2;
height = 100;
width = 400;
border-radius = 10;
border-size = 2;
height = 100;
width = 400;
defaultTimeout = 10000; # ms
font = "FiraCode Nerd Font 11";
icons = true;
markup = true;
default-timeout = 10000; # ms
font = "FiraCode Nerd Font 11";
icons = true;
markup = true;
};
};
};
}

View File

@ -116,15 +116,14 @@ in {
};
xsession.enable = true;
services.mako = {
backgroundColor = "#313131";
borderColor = "#00FFEE";
progressColor = "#338833";
textColor = "#e0e0e0";
extraConfig = ''
[urgency=low]
border-color=#008877
'';
services.mako.settings = {
background-color = "#313131";
border-color = "#00FFEE";
progress-color = "#338833";
text-color = "#e0e0e0";
"urgency=low" = {
border-color = "#008877";
};
};
};
}