nix-da/modules/nix/nixpkgs.nix
2024-07-10 00:35:27 +02:00

10 lines
181 B
Nix

{
nixpkgs.config = {
allowUnfree = true;
packageOverrides = pkgs: {
custom = {
scripts = import ../../home/scripts { inherit pkgs; };
};
};
};
}