nix-community.nixvim/wrappers/modules/nixos.nix
Matt Sturgeon fb7cda2868
modules/output: refactor wrapRc default
Set default to `true`, with a low priority. Home-manager's wrapper sets
its own default using `mkOptionDefault`.

Clarify using `defaultText`.
2024-09-25 18:43:10 +01:00

8 lines
139 B
Nix

{ lib, ... }:
{
options = {
defaultEditor = lib.mkEnableOption "nixvim as the default editor";
};
imports = [ ./enable.nix ];
}