c3823d0cfb
You know that moment when you're learning a languaged and getting the grammar all wrong? No? Niether do I. resolves #6
18 lines
241 B
Nix
18 lines
241 B
Nix
# Configuration common to all Reciproka Kolektivo servers
|
|
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../profiles/openssh.nix
|
|
../profiles/users.nix
|
|
];
|
|
|
|
programs.mosh = {
|
|
enable = true;
|
|
withUtempter = true;
|
|
};
|
|
}
|