mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-17 23:14:07 +01:00
28 lines
1017 B
Nix
28 lines
1017 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
|
|
#
|
|
###################################################################################
|
|
|
|
# Determinate uses its own daemon to manage the Nix installation that
|
|
# conflicts with nix-darwin's native Nix management. so we should disable this option.
|
|
nix.enable = false;
|
|
|
|
# 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;
|
|
}
|