{ pkgs, ... }: { ################################################################################### # # Core configuration for nix-darwin # # All the configuration options are documented here: # https://daiderd.com/nix-darwin/manual/index.html#sec-options # ################################################################################### # Allow unfree packages nixpkgs.config.allowUnfree = true; # Auto upgrade nix package and the daemon service. # services.nix-daemon.enable = false; # # Use this instead of services.nix-daemon.enable if you # don't wan't the daemon service to be managed for you. nix.useDaemon = true; nix.package = pkgs.nix; # Disable auto-optimise-store because of this issue: # https://github.com/NixOS/nix/issues/7273 # "error: cannot link '/nix/store/.tmp-link-xxxxx-xxxxx' to '/nix/store/.links/xxxx': File exists" nix.settings.auto-optimise-store = false; nix.gc.automatic = false; }