Allowed unfree and added node env
This commit is contained in:
parent
79f9a3782d
commit
2bf865307d
|
@ -4,10 +4,17 @@
|
||||||
|
|
||||||
{
|
{
|
||||||
|
|
||||||
|
nixpkgs = {
|
||||||
|
config = {
|
||||||
|
allowUnfree = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
environment = {
|
environment = {
|
||||||
systemPackages = with pkgs; [
|
systemPackages = with pkgs; [
|
||||||
nix-universal-prefetch # Uses nixpkgs fetchers to figure out hashes
|
nix-universal-prefetch # Uses nixpkgs fetchers to figure out hashes
|
||||||
cabal2nix # Convert Cabal files into Nix build instructions
|
cabal2nix # Convert Cabal files into Nix build instructions
|
||||||
|
nodePackages.node2nix # Generate Nix expressions to build NPM packages
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue