10 lines
181 B
Nix
10 lines
181 B
Nix
{
|
|
nixpkgs.config = {
|
|
allowUnfree = true;
|
|
packageOverrides = pkgs: {
|
|
custom = {
|
|
scripts = import ../../home/scripts { inherit pkgs; };
|
|
};
|
|
};
|
|
};
|
|
}
|