mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 02:25:12 -05:00
19 lines
279 B
Nix
Executable file
19 lines
279 B
Nix
Executable file
{ devicesFunctions }:
|
|
let
|
|
inherit (devicesFunctions)
|
|
ownerExclusiveReadWriteMask
|
|
;
|
|
in
|
|
{
|
|
label = "Charon";
|
|
name = "charon";
|
|
sync = {
|
|
address0 = "";
|
|
};
|
|
ip = {
|
|
address0 = "192.168.50.42";
|
|
};
|
|
boot = {
|
|
options = ownerExclusiveReadWriteMask;
|
|
};
|
|
}
|