12 lines
216 B
Nix
Executable file
12 lines
216 B
Nix
Executable file
{pkgs, ...}: {
|
|
programs.nixvim.plugins.image = {
|
|
enable = true;
|
|
backend = "ueberzug";
|
|
};
|
|
|
|
programs.nixvim.plugins.clipboard-image = {
|
|
enable = true;
|
|
clipboardPackage = pkgs.wl-clipboard;
|
|
};
|
|
}
|