mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-08 05:49:25 -06:00
24 lines
386 B
Nix
Executable file
24 lines
386 B
Nix
Executable file
{ moduleFunctions }:
|
|
let
|
|
inherit (moduleFunctions.devicesFunctions)
|
|
ownerWriteOthersReadMask
|
|
deimosIP
|
|
deviceNames
|
|
;
|
|
in
|
|
{
|
|
label = deviceNames.laptopLabel;
|
|
name = deviceNames.laptop;
|
|
sync = {
|
|
address0 = deimosIP;
|
|
};
|
|
ip = {
|
|
address0 = deimosIP;
|
|
};
|
|
wireguard = {
|
|
ip0 = "10.100.0.3";
|
|
};
|
|
boot = {
|
|
options = ownerWriteOthersReadMask;
|
|
};
|
|
}
|