dotfiles/config/devices/config/laptop.nix

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;
};
}