mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-15 17:45:12 -05:00
20 lines
285 B
Nix
Executable file
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;
|
|
};
|
|
}
|