mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-09 05:14:41 -05:00
17 lines
284 B
Nix
Executable file
17 lines
284 B
Nix
Executable file
{ moduleFunctions }:
|
|
let
|
|
inherit (moduleFunctions.devicesFunctions)
|
|
phoneIP
|
|
dummy
|
|
;
|
|
in
|
|
{
|
|
name = "pixel";
|
|
label = dummy;
|
|
sync = {
|
|
address0 = "RMDKNJY-BTX6FYF-G6SR332-WS6HARI-PF74SC6-VPBSGRQ-MKVQZEQ-KSIB6QV"; # User0
|
|
};
|
|
ip = {
|
|
address0 = phoneIP;
|
|
};
|
|
}
|