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