Allowed unfree and added node env

This commit is contained in:
Craige McWhirter 2020-03-06 14:57:26 +10:00
parent 79f9a3782d
commit 2bf865307d
Signed by: sercanto
GPG key ID: 7DBA9F5689EFB6AA

View file

@ -4,10 +4,17 @@
{
nixpkgs = {
config = {
allowUnfree = true;
};
};
environment = {
systemPackages = with pkgs; [
nix-universal-prefetch # Uses nixpkgs fetchers to figure out hashes
cabal2nix # Convert Cabal files into Nix build instructions
nodePackages.node2nix # Generate Nix expressions to build NPM packages
];
};