mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-09 21:34:38 -05:00
23 lines
345 B
Nix
Executable file
23 lines
345 B
Nix
Executable file
{ moduleFunctions }:
|
|
let
|
|
inherit (moduleFunctions.devicesFunctions)
|
|
ownerWriteOthersReadMask
|
|
deimosIP
|
|
;
|
|
in
|
|
{
|
|
label = "Deimos";
|
|
name = "deimos";
|
|
sync = {
|
|
address0 = deimosIP;
|
|
};
|
|
ip = {
|
|
address0 = deimosIP;
|
|
};
|
|
wireguard = {
|
|
ip0 = "10.100.0.3";
|
|
};
|
|
boot = {
|
|
options = ownerWriteOthersReadMask;
|
|
};
|
|
}
|