reciproka-ops/profiles/server_common.nix
2023-04-24 09:24:00 +10:00

19 lines
283 B
Nix

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