mio-ops/profiles/server_common.nix
2021-11-16 17:53:38 +10:00

19 lines
254 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;
};
}