Skip to content

Commit

Permalink
fix(dips): permit botnet 6
Browse files Browse the repository at this point in the history
Revert after NixOS/nixpkgs#360592 and NixOS/nixpkgs#326335 are sorted out.
  • Loading branch information
DavSanchez authored Jan 12, 2025
1 parent 19a5b6a commit bf27cd5
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion hosts/hive/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,12 @@
};
nodeNixpkgs = {
foundry-pi = import inputs.nixpkgs { system = "aarch64-linux"; };
eter = import inputs.nixpkgs { system = "x86_64-linux"; };
eter = import inputs.nixpkgs {
system = "x86_64-linux";
config.permittedInsecurePackages = [
"dotnet-sdk-6.0.428"
];
};
};
};
# nixberrypi = ./nixberrypi/configuration.nix;
Expand Down

0 comments on commit bf27cd5

Please sign in to comment.