15 lines
361 B
Nix
15 lines
361 B
Nix
{
|
|
"/etc/nixos/git" = {
|
|
hostPath = "/etc/nixos/git";
|
|
mountPoint = "/etc/nixos/git";
|
|
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;
|
|
};
|
|
}
|