wrappers: cleanup with lib

This commit is contained in:
Austin Horstman 2024-08-30 14:39:23 -05:00
parent 1c9ba58aef
commit c76e5070b9
No known key found for this signature in database

View file

@ -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`.