summary refs log tree commit diff stats
path: root/system/impermanence/mods/openssh.nix
blob: 656f96e06d5f8ff5d69a5fd59fbc4b38b4b693c1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{...}: {
  environment.persistence."/srv".directories = [
    {
      directory = "/var/lib/sshd";
      user = "root";
      group = "root";
      mode = "0755";
    }
  ];
}