1
0
Fork 0
mirror of https://github.com/nix-community/nixvim.git synced 2025-11-09 03:56:05 +01:00
nixvim/wrappers/modules/nixos.nix
2024-07-02 14:15:51 +00:00

12 lines
189 B
Nix

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