Disable nix channels in darwin
This commit is contained in:
parent
5ace96b3c0
commit
672cd5e5bf
@ -144,17 +144,17 @@ in
|
|||||||
# Auto upgrade nix package and the daemon service.
|
# Auto upgrade nix package and the daemon service.
|
||||||
services.nix-daemon.enable = true;
|
services.nix-daemon.enable = true;
|
||||||
|
|
||||||
nix = {
|
nix.channel.enable = lib.mkDefault false;
|
||||||
configureBuildUsers = true;
|
nix.configureBuildUsers = lib.mkDefault true;
|
||||||
distributedBuilds = true;
|
nix.distributedBuilds = lib.mkDefault true;
|
||||||
|
|
||||||
gc = {
|
nix.gc = {
|
||||||
automatic = lib.mkDefault true;
|
automatic = lib.mkDefault true;
|
||||||
options = lib.mkDefault "--delete-older-than 7d";
|
options = lib.mkDefault "--delete-older-than 7d";
|
||||||
};
|
};
|
||||||
settings = {
|
|
||||||
experimental-features = "nix-command flakes";
|
nix.settings = {
|
||||||
};
|
experimental-features = lib.mkDefault "nix-command flakes";
|
||||||
};
|
};
|
||||||
|
|
||||||
homebrew = {
|
homebrew = {
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user