mirror of
https://github.com/cupcakearmy/nix-cli.git
synced 2025-12-09 15:25:02 +00:00
23 lines
428 B
Nix
23 lines
428 B
Nix
[
|
|
{
|
|
username = "root_x86_linux";
|
|
architecture = "x86_64-linux";
|
|
homeDirectory = "/root";
|
|
}
|
|
{
|
|
username = "root_x86_macos";
|
|
architecture = "x86_64-darwin";
|
|
homeDirectory = "/root";
|
|
}
|
|
{
|
|
username = "root_arm_linux";
|
|
architecture = "aarch64-linux";
|
|
homeDirectory = "/root";
|
|
}
|
|
{
|
|
username = "root_arm_macos";
|
|
architecture = "aarch64-darwin";
|
|
homeDirectory = "/root";
|
|
}
|
|
]
|