mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-08-13 23:34:39 -05:00
27 lines
543 B
Nix
Executable file
27 lines
543 B
Nix
Executable file
{devicesFunctions}: let
|
|
inherit
|
|
(devicesFunctions)
|
|
ownerWriteOthersReadMask
|
|
readWritePermissions
|
|
;
|
|
in {
|
|
label = "Desktop";
|
|
name = "desktop";
|
|
sync = "";
|
|
ip = {
|
|
address0 = "192.168.50.196";
|
|
};
|
|
boot = {
|
|
options = ownerWriteOthersReadMask;
|
|
};
|
|
storage0 = {
|
|
mount = "/mnt/media/games";
|
|
device = "/dev/disk/by-label/Games";
|
|
options = readWritePermissions;
|
|
};
|
|
storage1 = {
|
|
mount = "/mnt/media/storage";
|
|
device = "/dev/disk/by-label/Storage";
|
|
options = readWritePermissions;
|
|
};
|
|
}
|