8aa2357df5
resolves #18
18 lines
241 B
Nix
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;
|
|
};
|
|
}
|