mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-15 08:14:39 -05:00
16 lines
254 B
Nix
Executable file
16 lines
254 B
Nix
Executable file
{devicesFunctions}: let
|
|
inherit
|
|
(devicesFunctions)
|
|
ownerWriteOthersReadMask
|
|
;
|
|
in {
|
|
label = "Laptop";
|
|
name = "laptop";
|
|
sync = "";
|
|
ip = {
|
|
address0 = "192.168.50.142";
|
|
};
|
|
boot = {
|
|
options = ownerWriteOthersReadMask;
|
|
};
|
|
}
|