20 lines
506 B
Nix
20 lines
506 B
Nix
{
|
|
"/etc/nixos/git" = {
|
|
hostPath = "/etc/nixos/git";
|
|
mountPoint = "/etc/nixos/git";
|
|
isReadOnly = false;
|
|
};
|
|
"/shared" = {
|
|
hostPath = "/Storage/Data/Docker/sysctl.io/guacamole/guacd/shared";
|
|
mountPoint = "/shared";
|
|
isReadOnly = false;
|
|
};
|
|
"/home/albert/.ssh/id_ed25519" = {
|
|
mountPoint = "/home/albert/.ssh/id_ed25519";
|
|
isReadOnly = true;
|
|
};
|
|
"/home/albert/.ssh/id_ed25519.pub" = {
|
|
mountPoint = "/home/albert/.ssh/id_ed25519.pub";
|
|
isReadOnly = true;
|
|
};
|
|
}
|