mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 18:23:54 -05:00
29 lines
642 B
Nix
29 lines
642 B
Nix
{
|
|
pkgs,
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
options = {alyraffauf.apps.mako.enable = lib.mkEnableOption "Enables mako.";};
|
|
|
|
config = lib.mkIf config.alyraffauf.apps.mako.enable {
|
|
home.packages = with pkgs; [(nerdfonts.override {fonts = ["Noto"];})];
|
|
|
|
services.mako = {
|
|
enable = true;
|
|
anchor = "top-center";
|
|
backgroundColor = "#232634CC";
|
|
borderColor = "#ca9ee6";
|
|
borderRadius = 10;
|
|
defaultTimeout = 10000;
|
|
font = "NotoSans Nerd Font Regular 10";
|
|
height = 300;
|
|
layer = "top";
|
|
padding = "15";
|
|
textColor = "#FAFAFA";
|
|
width = 400;
|
|
margin = "20,0";
|
|
};
|
|
};
|
|
}
|