Replies: 1 comment 5 replies
-
can i see the package error and your addition of packages? im assuming its a conflict error but for now it may be possible with overlays, if this works let me know because this would be good for the FAQ # nixpkgs is a nixModules level option
nixpkgs.overlays = [
(final: prev: {
vscode = null;
# to override version possible too, but this can mess up hydenix
vscode = userPkgs.vscode;
})
];
|
Beta Was this translation helpful? Give feedback.
5 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I've been trying to change the VSCode package, I want to install VSCodium using home-manager, but does not matter how I try to install it I get a package error.
I would like to be able to filter out some packages that I won't be using / I want to install using home-manager to being able to configure them.
Is there a proper way to do this?
Beta Was this translation helpful? Give feedback.
All reactions