diff --git a/roles/server_common.nix b/roles/server_common.nix new file mode 100644 index 0000000..109f156 --- /dev/null +++ b/roles/server_common.nix @@ -0,0 +1,19 @@ +# Configuration common to all my servers + +{ config, pkgs, lib, ... }: + +{ + + imports = + [ + ../roles/openssh.nix + ../secrets/user-craige.nix + ../secrets/user-root.nix + ]; + + programs.mosh = { + enable = true; + withUtempter = true; + }; + +}