mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-10 05:44:38 -05:00
21 lines
285 B
Nix
21 lines
285 B
Nix
![]() |
{ devicesFunctions }:
|
||
|
let
|
||
|
inherit (devicesFunctions)
|
||
|
ownerWriteOthersReadMask
|
||
|
phobosIP
|
||
|
;
|
||
|
in
|
||
|
{
|
||
|
label = "Phobos";
|
||
|
name = "phobos";
|
||
|
sync = {
|
||
|
address0 = phobosIP;
|
||
|
};
|
||
|
ip = {
|
||
|
address0 = phobosIP;
|
||
|
};
|
||
|
boot = {
|
||
|
options = ownerWriteOthersReadMask;
|
||
|
};
|
||
|
}
|