dotfiles/modules/config/devices/config/charon.nix
2025-03-20 21:54:01 -05:00

20 lines
285 B
Nix
Executable file

{ devicesFunctions }:
let
inherit (devicesFunctions)
ownerExclusiveReadWriteMask
charonIP
;
in
{
label = "Charon";
name = "charon";
sync = {
address0 = "";
};
ip = {
address0 = charonIP;
};
boot = {
options = ownerExclusiveReadWriteMask;
};
}