blob: 0eec444930aac62e1913e3d2f73a699e8925bf4b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
{ pkgs, config, lib, ... }:
{
options = {
mako.enable = lib.mkEnableOption "enable mako";
};
config = lib.mkIf config.mako.enable {
services.mako = {
enable = true;
settings = {
anchor = "bottom-right";
defaultTimeout = 5000;
borderSize = 3;
borderRadius = 7;
};
};
};
}
|