mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 00:25:42 +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, ... }:
|
||||
with lib;
|
||||
let
|
||||
let
|
||||
cfg = config.programs.nixvim.plugins.telescope.extensions.media_files;
|
||||
in
|
||||
{
|
||||
|
@ -8,7 +8,7 @@ in
|
|||
enable = mkEnableOption "Enable media_files extension for telescope";
|
||||
|
||||
filetypes = mkOption {
|
||||
default = types.null;
|
||||
default = null;
|
||||
type = with types; nullOr (listOf str);
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue