fix: ephvm setup
This commit is contained in:
@@ -16,10 +16,12 @@
|
|||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = {
|
config = lib.mkMerge [
|
||||||
# only disable when stylix is present (loaded by desktop feature)
|
(lib.optionalAttrs (options ? stylix) {
|
||||||
stylix.targets.neovim.enable = lib.mkIf (options ? stylix) false;
|
# disable stylix neovim target when stylix is present (loaded by desktop feature)
|
||||||
|
stylix.targets.neovim.enable = false;
|
||||||
|
})
|
||||||
|
{
|
||||||
xdg.configFile."nvim" = lib.mkIf (config.neovim.dotfiles != null) {
|
xdg.configFile."nvim" = lib.mkIf (config.neovim.dotfiles != null) {
|
||||||
source = config.neovim.dotfiles;
|
source = config.neovim.dotfiles;
|
||||||
};
|
};
|
||||||
@@ -61,6 +63,7 @@
|
|||||||
"${lib.makeLibraryPath [ pkgs.stdenv.cc.cc.lib ]}"
|
"${lib.makeLibraryPath [ pkgs.stdenv.cc.cc.lib ]}"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
}
|
||||||
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -84,6 +84,8 @@ in
|
|||||||
"vm-9p-automount"
|
"vm-9p-automount"
|
||||||
"docker"
|
"docker"
|
||||||
"neovim"
|
"neovim"
|
||||||
|
"claude"
|
||||||
|
"dev"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user