Migrate nixpkgs boilerplate config to home-manager setup

This commit is contained in:
Daniel Siepmann 2024-05-29 15:54:38 +02:00
parent 4a6b4b8f1c
commit 44188373cb
Signed by: Daniel Siepmann
GPG key ID: 33D6629915560EF4
2 changed files with 7 additions and 4 deletions

View file

@ -1,4 +0,0 @@
{
permittedInsecurePackages = [
];
}

View file

@ -91,4 +91,11 @@ in {
inherit config pkgs;
};
nixpkgs.config = {
allowUnfreePredicate = pkg: builtins.elem (lib.getName pkg) [
];
permittedInsecurePackages = [
];
};
}