mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-17 18:45:12 -05:00
19 lines
274 B
Nix
Executable file
19 lines
274 B
Nix
Executable file
{ devicesFunctions }:
|
|
let
|
|
inherit (devicesFunctions)
|
|
ownerWriteOthersReadMask
|
|
;
|
|
in
|
|
{
|
|
label = "Laptop";
|
|
name = "laptop";
|
|
sync = {
|
|
address0 = "";
|
|
};
|
|
ip = {
|
|
address0 = "192.168.50.142";
|
|
};
|
|
boot = {
|
|
options = ownerWriteOthersReadMask;
|
|
};
|
|
}
|