config: Allow unfree vagrant

Signed-off-by: George Kaklamanos <gkaklas@gkaklas.gr>
This commit is contained in:
George Kaklamanos 2025-06-30 19:37:44 +03:00
parent 877d7bffcf
commit 5fc5970587
Signed by: gkaklas
GPG key ID: C0CAB8A6BDC9399D

View file

@ -26,4 +26,13 @@
defaultCacheTtl = 60480000;
defaultCacheTtlSsh = 60480000;
};
nixpkgs = {
config = {
#allowUnfree = true;
allowUnfreePredicate = pkg:
builtins.elem (lib.getName pkg) [
"vagrant"
];
};
};
}