13 lines
253 B
Org Mode
13 lines
253 B
Org Mode
#+title: Mako Configuration
|
|
|
|
Enable =mako= to handle notifications.
|
|
#+begin_src nix :tangle ~/.flake/home/services/mako.nix :mkdirp yes
|
|
{ config, pkgs, ... }:
|
|
|
|
{
|
|
services.mako = {
|
|
enable = true;
|
|
backgroundColor = "#191916ff";
|
|
};
|
|
}
|
|
#+end_src
|