Merge pull request #306 from genebean/python2

Install python2 (ewwww)
This commit is contained in:
Gene Liverman 2023-10-09 14:37:10 -04:00 committed by GitHub
commit 06522221b9
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 1 deletions

View file

@ -61,7 +61,12 @@
system = "x86_64-darwin";
pkgs = import nixpkgs {
system = "x86_64-darwin";
config.allowUnfree = true;
config = {
allowUnfree = true;
permittedInsecurePackages = [
"python-2.7.18.6"
];
};
};
modules = [
nix-homebrew.darwinModules.nix-homebrew

View file

@ -21,6 +21,7 @@ in {
nodejs
nodePackages.npm
openjdk
python2
];
};