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