mirror of
https://github.com/nix-community/nixvim.git
synced 2025-06-21 08:35:43 +02:00
tests/magma-nvim: only run on linux
This commit is contained in:
parent
f830aada6f
commit
c7fc381247
1 changed files with 5 additions and 2 deletions
|
@ -1,11 +1,14 @@
|
||||||
|
{ pkgs, ... }:
|
||||||
{
|
{
|
||||||
empty = {
|
empty = {
|
||||||
plugins.magma-nvim.enable = true;
|
# NOTE: 2024-10-10 when marked as linux specific platform
|
||||||
|
plugins.magma-nvim.enable = pkgs.stdenv.isLinux;
|
||||||
};
|
};
|
||||||
|
|
||||||
defaults = {
|
defaults = {
|
||||||
plugins.magma-nvim = {
|
plugins.magma-nvim = {
|
||||||
enable = true;
|
# NOTE: 2024-10-10 when marked as linux specific platform
|
||||||
|
enable = pkgs.stdenv.isLinux;
|
||||||
|
|
||||||
settings = {
|
settings = {
|
||||||
image_provider = "none";
|
image_provider = "none";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue