From 7ea75723ccbccc0c5d06de41e4833a58d8e2db90 Mon Sep 17 00:00:00 2001 From: alfarel Date: Fri, 31 Oct 2025 19:47:24 +0000 Subject: [PATCH] docs/modules: remove outdated and incorrect input-following suggestions --- docs/manual/installation/modules/home-manager.md | 7 ------- docs/manual/installation/modules/nixos.md | 7 ------- 2 files changed, 14 deletions(-) diff --git a/docs/manual/installation/modules/home-manager.md b/docs/manual/installation/modules/home-manager.md index 37d35e2b..a9f34541 100644 --- a/docs/manual/installation/modules/home-manager.md +++ b/docs/manual/installation/modules/home-manager.md @@ -19,10 +19,6 @@ To use **nvf** with flakes, we first need to add the input to our `flake.nix`. # flake.nix { inputs = { - # Optional, if you intend to follow nvf's obsidian-nvim input - # you must also add it as a flake input. - obsidian-nvim.url = "github:epwalsh/obsidian.nvim"; - # Required, nvf works best and only directly supports flakes nvf = { url = "github:NotAShelf/nvf"; @@ -30,9 +26,6 @@ To use **nvf** with flakes, we first need to add the input to our `flake.nix`. # instance of nixpkgs. This is safe to do as nvf does not depend # on a binary cache. inputs.nixpkgs.follows = "nixpkgs"; - # Optionally, you can also override individual plugins - # for example: - inputs.obsidian-nvim.follows = "obsidian-nvim"; # <- this will use the obsidian-nvim from your inputs }; # ... diff --git a/docs/manual/installation/modules/nixos.md b/docs/manual/installation/modules/nixos.md index 946905c1..50cb504f 100644 --- a/docs/manual/installation/modules/nixos.md +++ b/docs/manual/installation/modules/nixos.md @@ -19,10 +19,6 @@ To use **nvf** with flakes, we first need to add the input to our `flake.nix`. # flake.nix { inputs = { - # Optional, if you intend to follow nvf's obsidian-nvim input - # you must also add it as a flake input. - obsidian-nvim.url = "github:epwalsh/obsidian.nvim"; - # Required, nvf works best and only directly supports flakes nvf = { url = "github:NotAShelf/nvf"; @@ -30,9 +26,6 @@ To use **nvf** with flakes, we first need to add the input to our `flake.nix`. # instance of nixpkgs. This is safe to do as nvf does not depend # on a binary cache. inputs.nixpkgs.follows = "nixpkgs"; - # Optionally, you can also override individual plugins - # for example: - inputs.obsidian-nvim.follows = "obsidian-nvim"; # <- this will use the obsidian-nvim from your inputs }; # ...