11 lines
195 B
Nix
11 lines
195 B
Nix
{pkgs, ...}: {
|
|
system.stateVersion = "25.05";
|
|
nixpkgs.config.allowUnfree = true;
|
|
nix = {
|
|
distributedBuilds = true;
|
|
settings = {
|
|
builders-use-substitutes = true;
|
|
};
|
|
};
|
|
}
|