tests/magma-nvim: only run on linux

This commit is contained in:
Austin Horstman 2024-10-10 08:39:49 -05:00
parent f830aada6f
commit c7fc381247
No known key found for this signature in database

View file

@ -1,11 +1,14 @@
{ pkgs, ... }:
{
empty = {
plugins.magma-nvim.enable = true;
# NOTE: 2024-10-10 when marked as linux specific platform
plugins.magma-nvim.enable = pkgs.stdenv.isLinux;
};
defaults = {
plugins.magma-nvim = {
enable = true;
# NOTE: 2024-10-10 when marked as linux specific platform
enable = pkgs.stdenv.isLinux;
settings = {
image_provider = "none";