nix/nixos/containers/rdesktop/mounts.nix
2025-02-23 18:13:36 -08:00

20 lines
467 B
Nix

{
"/etc/nixos/git" = {
hostPath = "/etc/nixos/git";
mountPoint = "/etc/nixos/git";
isReadOnly = false;
};
"/shared" = {
hostPath = "/tmp/guacamole";
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;
};
}