From c76e5070b9715c98006f40e7708d2dc676d91bc9 Mon Sep 17 00:00:00 2001 From: Austin Horstman Date: Fri, 30 Aug 2024 14:39:23 -0500 Subject: [PATCH] wrappers: cleanup with lib --- wrappers/modules/hm.nix | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/wrappers/modules/hm.nix b/wrappers/modules/hm.nix index 55059afa..42da95bb 100644 --- a/wrappers/modules/hm.nix +++ b/wrappers/modules/hm.nix @@ -1,11 +1,10 @@ { lib, ... }: -with lib; { options = { - defaultEditor = mkEnableOption "nixvim as the default editor"; + defaultEditor = lib.mkEnableOption "nixvim as the default editor"; - vimdiffAlias = mkOption { - type = types.bool; + vimdiffAlias = lib.mkOption { + type = lib.types.bool; default = false; description = '' Alias `vimdiff` to `nvim -d`.