12 lines
260 B
Nix
12 lines
260 B
Nix
{pkgs, ...}: {
|
|
nix = {
|
|
package = pkgs.lixPackageSets.latest.lix;
|
|
channel.enable = false;
|
|
daemonCPUSchedPolicy = "idle";
|
|
settings = {
|
|
experimental-features = ["nix-command" "flakes"];
|
|
builders-use-substitutes = true;
|
|
};
|
|
};
|
|
}
|