mirror of
https://github.com/ryan4yin/nix-config.git
synced 2026-03-18 07:24:10 +01:00
29 lines
1001 B
Nix
29 lines
1001 B
Nix
{pkgs, ...}: {
|
|
###################################################################################
|
|
#
|
|
# 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 determinated 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 nix package and the daemon service.
|
|
services.nix-daemon.enable = 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;
|
|
}
|