reciproka-ops/profiles/server_common.nix

20 lines
279 B
Nix
Raw Normal View History

2021-10-07 02:13:48 +00:00
# Configuration common to all JFDIC servers
{ config, pkgs, lib, ... }:
{
imports =
[
../profiles/openssh.nix
../secrets/user-fiscalvelvetpoet.nix
../secrets/user-root.nix
];
programs.mosh = {
enable = true;
withUtempter = true;
};
}