nix/nixos/containers/rdesktop/mounts.nix

21 lines
506 B
Nix
Raw Normal View History

2024-03-25 04:41:07 +01:00
{
"/etc/nixos/git" = {
hostPath = "/etc/nixos/git";
mountPoint = "/etc/nixos/git";
isReadOnly = false;
};
2024-08-22 02:40:12 +02:00
"/shared" = {
2024-08-23 03:08:40 +02:00
hostPath = "/Storage/Data/Docker/sysctl.io/guacamole/guacd/shared";
mountPoint = "/shared";
2024-08-21 05:28:56 +02:00
isReadOnly = false;
};
2024-04-05 12:08:07 +02:00
"/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;
};
2024-03-21 14:21:00 +01:00
}