mirror of
https://github.com/caperren/nixos-configs.git
synced 2025-11-09 04:01:15 +00:00
10 lines
185 B
Nix
10 lines
185 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
# Allow unfree packages
|
|
nixpkgs.config.allowUnfree = true;
|
|
|
|
# Generally want a larger download buffer
|
|
nix.settings.download-buffer-size = 524288000;
|
|
|
|
}
|