11 lines
274 B
Nix
11 lines
274 B
Nix
{ lib, pkgs, system, ... }: {
|
|
imports = [
|
|
../shared/common.nix
|
|
];
|
|
|
|
# Used for backwards compatibility, please read the changelog before changing.
|
|
# $ darwin-rebuild changelog
|
|
system.stateVersion = 6;
|
|
|
|
nixpkgs.hostPlatform = lib.mkDefault "aarch64-darwin";
|
|
}
|