mio-ops/profiles/server_common.nix
2021-03-03 15:52:21 +10:00

20 lines
266 B
Nix

# Configuration common to all my servers
{ config, pkgs, lib, ... }:
{
imports =
[
../profiles/openssh.nix
../secrets/user-craige.nix
../secrets/user-root.nix
];
programs.mosh = {
enable = true;
withUtempter = true;
};
}