Files
nix-config/systems/aarch64-darwin/macbook-pro/nix.nix
mjallen18 3d213c8769 nixfmt
2025-07-24 11:06:08 -05:00

18 lines
395 B
Nix

{ ... }:
{
# Auto upgrade nix package and the daemon service.
# services.nix-daemon.enable = true;
# nix.package = pkgs.nix;
# Necessary for using flakes on this system.
nix = {
settings.experimental-features = "nix-command flakes";
};
# The platform the configuration will be used on.
nixpkgs = {
config.allowUnfree = true;
hostPlatform = "aarch64-darwin";
};
}