mio-ops/profiles/server_common.nix

20 lines
266 B
Nix
Raw Normal View History

2019-12-10 14:42:06 +00:00
# Configuration common to all my servers
{ config, pkgs, lib, ... }:
{
imports =
[
2021-03-03 05:52:21 +00:00
../profiles/openssh.nix
2019-12-10 14:42:06 +00:00
../secrets/user-craige.nix
../secrets/user-root.nix
];
programs.mosh = {
enable = true;
withUtempter = true;
};
}