reciproka-ops/profiles/server_common.nix
2023-05-09 23:54:45 +10:00

18 lines
241 B
Nix

# Configuration common to all Reciproka Kolectiva servers
{
config,
pkgs,
lib,
...
}: {
imports = [
../profiles/openssh.nix
../profiles/users.nix
];
programs.mosh = {
enable = true;
withUtempter = true;
};
}