fix: nodejs is unsafe now. FUN

This commit is contained in:
Patrick Großmann 2023-05-22 23:22:40 +09:00
parent de6aec5f76
commit 7765f67b6e
Signed by: patrick
GPG key ID: 451F95EFB8BECD0F
2 changed files with 9 additions and 0 deletions

View file

@ -47,6 +47,11 @@
templates.flake = inputs.templates;
};
};
# TODO!!!!!!!
# Bad nodejs
nixpkgs.config.permittedInsecurePackages = [
"nodejs-16.20.0"
];
# TODO unify the stateversions here and of homemanager
system.stateVersion = "23.05";
}

View file

@ -10,4 +10,8 @@
];
# TODO unify stateversions
home.stateVersion = "23.05";
nixpkgs.config = {
allowUnfree = true;
};
}