17 lines
394 B
Nix
17 lines
394 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";
|
|
};
|
|
} |