Files
nixos-config/modules/basic/nix.nix
2024-05-06 20:41:48 +02:00

17 lines
368 B
Nix

{ config, pkgs, ... }:
{
nixpkgs.config.allowUnfree = true;
nix = {
package = pkgs.nixVersions.latest;
settings = {
sandbox = true;
cores = 0;
trusted-users = [ "@wheel" ];
substituters = [ "https://cache.nixos.org/" ];
builders-use-substitutes = true;
experimental-features = [ "nix-command" "flakes" ];
};
};
}