Large change on folder structure AND used of import-tree.

This commit is contained in:
Laurent Gueret
2026-01-28 13:18:17 +01:00
parent 3975dce418
commit ae5ac475c5
53 changed files with 253 additions and 278 deletions
+27
View File
@@ -0,0 +1,27 @@
{
nixpkgs,
nixpkgs-unstable,
...
}:
{
nixpkgs.config.allowUnfreePredicate =
pkg:
builtins.elem (nixpkgs.lib.getName pkg) [
"nvidia-x11"
];
nixpkgs.overlays = [
(final: prev: {
unstable = import nixpkgs-unstable {
system = prev.system;
config.allowUnfreePredicate =
pkg:
builtins.elem (nixpkgs-unstable.lib.getName pkg) [
"pycharm"
];
};
})
];
}