mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-09 05:14:41 -05:00
20 lines
285 B
Nix
Executable file
20 lines
285 B
Nix
Executable file
{ devicesFunctions }:
|
|
let
|
|
inherit (devicesFunctions)
|
|
ownerWriteOthersReadMask
|
|
phobosIP
|
|
;
|
|
in
|
|
{
|
|
label = "Phobos";
|
|
name = "phobos";
|
|
sync = {
|
|
address0 = phobosIP;
|
|
};
|
|
ip = {
|
|
address0 = phobosIP;
|
|
};
|
|
boot = {
|
|
options = ownerWriteOthersReadMask;
|
|
};
|
|
}
|