modules/ui: switch to explicit lib calls

This commit is contained in:
raf 2024-03-15 15:01:46 +03:00 committed by Ching Pei Yang
commit 5955d53077
9 changed files with 37 additions and 32 deletions

View file

@ -11,7 +11,6 @@ in {
config = mkIf cfg.enable {
vim = {
startPlugins = ["nvim-notify"];
luaConfigRC.nvim-notify = entryAnywhere ''
require('notify').setup {
stages = "${cfg.stages}",

View file

@ -1,5 +1,5 @@
{lib, ...}: let
inherit (lib.options) mkOption mkEnableOption;
inherit (lib) mkOption mkEnableOption;
inherit (lib.types) enum int str attrsOf;
in {
options.vim.notify.nvim-notify = {