mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-24 09:48:42 +02:00
modules/output: Remove the initContent option
This (internal) option introduces IFD, and can be substituted internally with the `initPath` option easily. If the content is required somewhere users can use readFile on the initPath, though it will result in an IFD in their project.
This commit is contained in:
parent
8fbcfcb469
commit
367380bd84
3 changed files with 2 additions and 10 deletions
|
@ -61,13 +61,6 @@ with lib;
|
||||||
visible = false;
|
visible = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
initContent = mkOption {
|
|
||||||
type = types.str;
|
|
||||||
description = "The content of the `init.lua` file.";
|
|
||||||
readOnly = true;
|
|
||||||
visible = false;
|
|
||||||
};
|
|
||||||
|
|
||||||
printInitPackage = mkOption {
|
printInitPackage = mkOption {
|
||||||
type = types.package;
|
type = types.package;
|
||||||
description = "A tool to show the content of the generated `init.lua` file.";
|
description = "A tool to show the content of the generated `init.lua` file.";
|
||||||
|
@ -142,7 +135,6 @@ with lib;
|
||||||
{
|
{
|
||||||
type = lib.mkForce "lua";
|
type = lib.mkForce "lua";
|
||||||
finalPackage = wrappedNeovim;
|
finalPackage = wrappedNeovim;
|
||||||
initContent = readFile init;
|
|
||||||
initPath = "${init}";
|
initPath = "${init}";
|
||||||
|
|
||||||
printInitPackage = pkgs.writeShellApplication {
|
printInitPackage = pkgs.writeShellApplication {
|
||||||
|
|
|
@ -18,7 +18,7 @@ let
|
||||||
shared = import ./_shared.nix helpers args;
|
shared = import ./_shared.nix helpers args;
|
||||||
cfg = config.programs.nixvim;
|
cfg = config.programs.nixvim;
|
||||||
files = shared.configFiles // {
|
files = shared.configFiles // {
|
||||||
"nvim/init.lua".text = cfg.initContent;
|
"nvim/init.lua".source = cfg.initPath;
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|
|
@ -19,7 +19,7 @@ let
|
||||||
shared = import ./_shared.nix helpers args;
|
shared = import ./_shared.nix helpers args;
|
||||||
cfg = config.programs.nixvim;
|
cfg = config.programs.nixvim;
|
||||||
files = shared.configFiles // {
|
files = shared.configFiles // {
|
||||||
"nvim/sysinit.lua".text = cfg.initContent;
|
"nvim/sysinit.lua".source = cfg.initPath;
|
||||||
};
|
};
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue