mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-09 04:19:19 -08:00
11 lines
140 B
Nix
11 lines
140 B
Nix
_: let
|
|
hostConfig = _: {
|
|
system.stateVersion = 4;
|
|
};
|
|
in {
|
|
arch = "aarch64";
|
|
type = "macOS";
|
|
modules = [
|
|
hostConfig
|
|
];
|
|
}
|