wrappers/nixos: set wrapRc to true

This commit is contained in:
Gaetan Lepage 2023-08-14 19:48:19 +02:00 committed by Gaétan Lepage
parent cae34a7b8f
commit ac21d4d85e

View file

@ -4,7 +4,7 @@ modules: {
lib, lib,
... ...
} @ args: let } @ args: let
inherit (lib) mkEnableOption mkOption mkOptionType mkMerge mkIf types; inherit (lib) mkEnableOption mkOption mkOptionType mkForce mkMerge mkIf types;
shared = import ./_shared.nix modules args; shared = import ./_shared.nix modules args;
cfg = config.programs.nixvim; cfg = config.programs.nixvim;
files = files =
@ -19,6 +19,7 @@ in {
type = types.submodule ([ type = types.submodule ([
{ {
options.enable = mkEnableOption "nixvim"; options.enable = mkEnableOption "nixvim";
config.wrapRc = mkForce true;
} }
] ]
++ shared.topLevelModules); ++ shared.topLevelModules);