mirror of
https://github.com/smg1024/nix-darwin.git
synced 2026-05-22 20:32:59 +09:00
20 lines
354 B
Nix
20 lines
354 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
nix.settings = {
|
|
# enable flakes globally
|
|
experimental-features = ["nix-command" "flakes"];
|
|
};
|
|
|
|
# Allow unfree packages
|
|
nixpkgs.config = {
|
|
allowUnfree = true;
|
|
allowBroken = true;
|
|
};
|
|
|
|
# Auto upgrade nix package and the daemon service.
|
|
nix.package = pkgs.nix;
|
|
|
|
# Enable Determinate
|
|
nix.enable = false;
|
|
}
|