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