change files structure

This commit is contained in:
Frost-Phoenix 2024-04-06 14:02:42 +02:00
parent f3a6ce6554
commit 736048f9e5
24 changed files with 28 additions and 31 deletions

24
modules/home/mako.nix Normal file
View file

@ -0,0 +1,24 @@
{ config, pkgs, ... }:
{
services = {
mako = {
enable = true;
font = "JetBrainsMono Nerd Font 12";
padding = "15";
defaultTimeout = 5000;
borderSize = 2;
borderRadius = 5;
backgroundColor = "#1e1e2e";
borderColor = "#b4befe";
progressColor = "over #313244";
textColor = "#cdd6f4";
icons = true;
actions = true;
extraConfig = ''
text-alignment=center
[urgency=high]
border-color=#fab387
'';
};
};
}