fix: ephvm setup

This commit is contained in:
2026-03-27 22:11:50 +01:00
parent 38cdcebddd
commit 315de3696a
2 changed files with 45 additions and 40 deletions

View File

@@ -16,10 +16,12 @@
};
};
config = {
# only disable when stylix is present (loaded by desktop feature)
stylix.targets.neovim.enable = lib.mkIf (options ? stylix) false;
config = lib.mkMerge [
(lib.optionalAttrs (options ? stylix) {
# 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) {
source = config.neovim.dotfiles;
};
@@ -61,6 +63,7 @@
"${lib.makeLibraryPath [ pkgs.stdenv.cc.cc.lib ]}"
];
};
};
}
];
};
}

View File

@@ -84,6 +84,8 @@ in
"vm-9p-automount"
"docker"
"neovim"
"claude"
"dev"
];
};
};