From 8d76150a25ca2bcf2383877518ea19133414f210 Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Fri, 10 May 2024 18:47:54 +0300 Subject: [PATCH] modules/fn: add augroup to the content option --- modules/fn.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/modules/fn.nix b/modules/fn.nix index 3c1b743..39bd72d 100644 --- a/modules/fn.nix +++ b/modules/fn.nix @@ -1,4 +1,4 @@ -{ lib, ... }: +{ lib, pkgs, ... }: let inherit (lib.nix2lua) lambda raw; @@ -19,7 +19,11 @@ let }; } ./vim/keymap.nix + ./vim/augroup.nix # ./vim/opts.nix + + ################################################## + (pkgs.path + "/nixos/modules/misc/assertions.nix") ]; specialArgs = { inherit lib; }; });