added mako to river setup

feat/kile-v2
Ricard Illa 2022-12-29 21:12:28 +01:00
parent 2c7ac96417
commit bac3c74a96
No known key found for this signature in database
GPG Key ID: F69A672B72E54902
2 changed files with 18 additions and 1 deletions

View File

@ -1,7 +1,7 @@
{ config, pkgs, ... }:
{
imports = [ ./init.nix ./bemenu.nix ./waybar.nix ./foot.nix ];
imports = [ ./init.nix ./bemenu.nix ./waybar.nix ./foot.nix ./mako.nix ];
home.packages = with pkgs; [ river swaybg ];

View File

@ -0,0 +1,17 @@
{ config, pkgs, ... }:
{
programs.mako = {
enable = true;
actions = true;
anchor = "top-right";
backgroundColor = "#282828E6";
borderColor = "#458588";
borderRadius = 0;
borderSize = 1;
font = "Inter 10";
icons = true;
textColor = "#ebdbb2";
defaultTimeout = 5000;
};
}