Files
nix-config/modules/darwin/nix-core.nix
2024-11-11 17:20:26 +08:00

30 lines
976 B
Nix

{
###################################################################################
#
# Core configuration for nix-darwin
#
# All the configuration options are documented here:
# https://daiderd.com/nix-darwin/manual/index.html#sec-options
#
# History Issues:
# 1. Fixed by replace the determined nix-installer by the official one:
# https://github.com/LnL7/nix-darwin/issues/149#issuecomment-1741720259
#
###################################################################################
# Allow unfree packages
nixpkgs.config.allowUnfree = true;
# Auto upgrade the nix-daemon service.
services.nix-daemon.enable = true;
# 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;
system.stateVersion = 5;
}