mirror of
https://github.com/cupcakearmy/nix-macos.git
synced 2025-12-07 14:35:03 +00:00
27 lines
504 B
Nix
27 lines
504 B
Nix
[
|
|
{
|
|
name = "root_x86_linux";
|
|
username = "root";
|
|
architecture = "x86_64-linux";
|
|
homeDirectory = "/root";
|
|
}
|
|
{
|
|
name = "root_x86_macos";
|
|
username = "root";
|
|
architecture = "x86_64-darwin";
|
|
homeDirectory = "/root";
|
|
}
|
|
{
|
|
name = "root_arm_linux";
|
|
username = "root";
|
|
architecture = "aarch64-linux";
|
|
homeDirectory = "/root";
|
|
}
|
|
{
|
|
name = "root_arm_macos";
|
|
username = "root";
|
|
architecture = "aarch64-darwin";
|
|
homeDirectory = "/root";
|
|
}
|
|
]
|