blob: 057cd954a76b0db762213c637e9499c19771a393 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
{
pkgs,
config,
lib,
...
}: {
options = {
mako.enable = lib.mkEnableOption "enable mako";
};
config = lib.mkIf config.mako.enable {
services.mako = {
enable = true;
settings = {
anchor = "bottom-right";
default-timeout = 5000;
border-size = 3;
border-radius = 7;
};
};
};
}
|