summary refs log tree commit diff stats
path: root/system/services/openssh (follow)
Commit message (Collapse)AuthorAge
* refactor(nixos/openssh): Migrate from `system/services`Benedikt Peetz2024-08-02
|
* Fix(system/secrets): Ensure that ssh host key is available in stage 2Soispha2023-07-08
| | | | | | | | | | | | | | | The `/var/lib/sshd` directory is only mounted _after_ the stage 2 init, thus also after the system activation. Agenix, which runs in the system activation needs the hostkey however to decrypt the secrets needed for some units (as of right now only keycloak). Alas the only way I see to achieve that is to store the ssh hostkey directly on /srv, which is mounted before (it's marked as 'neededForBoot' after all) the stage 2 init. It should be possible to achieve this with impermanence however, as `/var/log` is mounted in the stage 1 init; The problem is that I have no idea _why_ only this is the only directory mounted and nothing else.
* Fix(system/services/openssh): Set correct permissions on ssh dirSoispha2023-07-04
|
* Fix(system/services/openssh): Rename to 'openssh' as the 'd' is a typoSoispha2023-07-03