2023-04-03 09:12:05 +00:00
|
|
|
{
|
|
|
|
config,
|
|
|
|
lib,
|
|
|
|
...
|
|
|
|
}:
|
|
|
|
with lib;
|
|
|
|
with builtins; {
|
|
|
|
options.vim.notify.nvim-notify = {
|
2023-06-05 20:10:25 +00:00
|
|
|
enable = mkEnableOption "nvim-notify notifications";
|
2023-04-03 09:12:05 +00:00
|
|
|
stages = mkOption {
|
|
|
|
type = types.enum ["fade_in_slide_out" "fade_in" "slide_out" "none"];
|
|
|
|
default = "fade_in_slide_out";
|
|
|
|
description = "The stages of the notification";
|
|
|
|
};
|
2023-06-05 20:10:25 +00:00
|
|
|
|
2023-04-03 09:12:05 +00:00
|
|
|
timeout = mkOption {
|
|
|
|
type = types.int;
|
|
|
|
default = 1000;
|
|
|
|
description = "The timeout of the notification";
|
|
|
|
};
|
2023-06-05 20:10:25 +00:00
|
|
|
|
2023-04-03 09:12:05 +00:00
|
|
|
background_colour = mkOption {
|
|
|
|
type = types.str;
|
|
|
|
default = "#000000";
|
|
|
|
description = "The background colour of the notification";
|
|
|
|
};
|
2023-06-05 20:10:25 +00:00
|
|
|
|
2023-04-03 09:12:05 +00:00
|
|
|
position = mkOption {
|
|
|
|
type = types.enum ["top_left" "top_right" "bottom_left" "bottom_right"];
|
|
|
|
default = "top_right";
|
|
|
|
description = "The position of the notification";
|
|
|
|
};
|
2023-06-05 20:10:25 +00:00
|
|
|
|
2023-04-03 09:12:05 +00:00
|
|
|
icons = mkOption {
|
|
|
|
type = types.attrsOf types.str;
|
2023-06-05 20:10:25 +00:00
|
|
|
description = "The icons of the notification";
|
2023-04-03 09:12:05 +00:00
|
|
|
default = {
|
|
|
|
ERROR = "";
|
|
|
|
WARN = "";
|
|
|
|
INFO = "";
|
|
|
|
DEBUG = "";
|
|
|
|
TRACE = "";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|