-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
unfree overlay rebuild glibc in ms-dotnettools.* #109
Comments
@UnReversed please explain what it means. Show logs with |
@UnReversed also, please check #99 (comment) |
sorry for not being too precise, i meant that nix compiles glibc and coreutils from source MRE {
description = "test";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
nix-vscode-extensions = {
url = "github:nix-community/nix-vscode-extensions";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs = {
nixpkgs,
home-manager,
nix-vscode-extensions,
...
}: let
homeconfig = {pkgs, ...}: {
nixpkgs = {
overlays = [
nix-vscode-extensions.overlays.default
];
config = {
allowUnfree = true;
};
};
home = {
username = "test";
homeDirectory = "/home/test";
stateVersion = "23.11";
};
programs.vscode = {
enable = true;
profiles.default = {
extensions = with pkgs.vscode-marketplace; [
ms-dotnettools.csdevkit
ms-dotnettools.csharp
];
};
};
};
in {
homeConfigurations = {
"test@test" = home-manager.lib.homeManagerConfiguration {
pkgs = nixpkgs.legacyPackages.x86_64-linux;
modules = [
homeconfig
];
};
};
};
}
changing to overlays = [
inputs.nix-vscode-extensions.overlays.default
]; yields no differences, still tries to compile glibc and coreutils |
I have a question, do you think this would be related to the errors I get now after running
I set allowUnfree already in multiple locations, to no avail. Is this a bug? |
@UnReversed have you set substituters? Does your machine have Internet access? Unfortunately, I'm not a NixOS user; hence, I can only ask some generic questions. Could you please try to reproduce your issue in GitHub Actions? |
So after creating first time overlay inspired by discussion in #99 nix want to rebuild glibc and coreutils
afected extensions:
overlay
my overlay
vscode config
The text was updated successfully, but these errors were encountered: