15 lines
267 B
Nix
15 lines
267 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
../profiles/minimal.nix
|
|
];
|
|
|
|
environment.darwinConfig = "/Users/${config.system.primaryUser}/Development/systems";
|
|
|
|
system.primaryUser = "pml";
|
|
|
|
nixpkgs.hostPlatform = "aarch64-darwin";
|
|
|
|
system.stateVersion = 6;
|
|
}
|