dotfiles/modules/config/devices/config/deimos.nix

20 lines
274 B
Nix
Raw Normal View History

{ devicesFunctions }:
let
inherit (devicesFunctions)
2024-11-10 01:29:37 -06:00
ownerWriteOthersReadMask
;
in
{
2025-03-01 15:49:07 -06:00
label = "Deimos";
name = "deimos";
sync = {
address0 = "";
};
2024-11-10 01:29:37 -06:00
ip = {
address0 = "192.168.50.142";
};
boot = {
options = ownerWriteOthersReadMask;
};
}