21 lines
655 B
Nix
21 lines
655 B
Nix
{
|
|
users.users.ecks = {
|
|
group = "sftponly";
|
|
isNormalUser = true;
|
|
home = "/sftp_jail/ecks";
|
|
openssh.authorizedKeys.keys = [
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIERtfY26/h5xl+bzZm2htR4+Wd879DvZRPHsosFaEqIW gaming@DESKTOP-4ACM3JU"
|
|
"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAINczWfNkdndU9bqB2PI1D3glO2CiIaEngXY5FnsodZjt ryusak"
|
|
];
|
|
};
|
|
|
|
fileSystems."/sftp_jail/ecks/mirror/ryusak" = {
|
|
device = "/mnt/data/mirror/archive/nintendo/switch/ryusak";
|
|
options = [ "bind" ];
|
|
};
|
|
fileSystems."/sftp_jail/ecks/mirror/shaders" = {
|
|
device = "/mnt/data/mirror/archive/nintendo/switch/shaders";
|
|
options = [ "bind" ];
|
|
};
|
|
}
|