Skip to content

Commit

Permalink
wrappers/nixos: set wrapRc to true
Browse files Browse the repository at this point in the history
  • Loading branch information
GaetanLepage committed Aug 16, 2023
1 parent cae34a7 commit ac21d4d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion wrappers/nixos.nix
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ modules: {
lib,
...
} @ 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;
cfg = config.programs.nixvim;
files =
Expand All @@ -19,6 +19,7 @@ in {
type = types.submodule ([
{
options.enable = mkEnableOption "nixvim";
config.wrapRc = mkForce true;
}
]
++ shared.topLevelModules);
Expand Down

0 comments on commit ac21d4d

Please sign in to comment.