mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
telescope.media_files: fix wrong namespace for null
This commit is contained in:
parent
3bce3ed48f
commit
053314724a
1 changed files with 2 additions and 2 deletions
|
@ -1,6 +1,6 @@
|
||||||
{ pkgs, config, lib, ... }:
|
{ pkgs, config, lib, ... }:
|
||||||
with lib;
|
with lib;
|
||||||
let
|
let
|
||||||
cfg = config.programs.nixvim.plugins.telescope.extensions.media_files;
|
cfg = config.programs.nixvim.plugins.telescope.extensions.media_files;
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
@ -8,7 +8,7 @@ in
|
||||||
enable = mkEnableOption "Enable media_files extension for telescope";
|
enable = mkEnableOption "Enable media_files extension for telescope";
|
||||||
|
|
||||||
filetypes = mkOption {
|
filetypes = mkOption {
|
||||||
default = types.null;
|
default = null;
|
||||||
type = with types; nullOr (listOf str);
|
type = with types; nullOr (listOf str);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue