mirror of
https://github.com/nix-community/nixvim.git
synced 2025-08-13 22:29:09 +02:00
templates/simple: remove useless self
from extraSpecialArgs
This commit is contained in:
parent
965f4b0b20
commit
45c2e25127
2 changed files with 2 additions and 3 deletions
|
@ -1,4 +1,4 @@
|
||||||
{self, ...}: {
|
{
|
||||||
# Import all your configuration modules here
|
# Import all your configuration modules here
|
||||||
imports = [
|
imports = [
|
||||||
./bufferline.nix
|
./bufferline.nix
|
||||||
|
|
|
@ -8,7 +8,6 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = {
|
outputs = {
|
||||||
self,
|
|
||||||
nixvim,
|
nixvim,
|
||||||
flake-parts,
|
flake-parts,
|
||||||
...
|
...
|
||||||
|
@ -35,7 +34,7 @@
|
||||||
module = config;
|
module = config;
|
||||||
# You can use `extraSpecialArgs` to pass additional arguments to your module files
|
# You can use `extraSpecialArgs` to pass additional arguments to your module files
|
||||||
extraSpecialArgs = {
|
extraSpecialArgs = {
|
||||||
inherit self;
|
# inherit (inputs) foo;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
in {
|
in {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue