nix/nixos/containers/rdesktop/mounts.nix

16 lines
361 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-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
}