20 lines
263 B
Nix
20 lines
263 B
Nix
|
# 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;
|
||
|
};
|
||
|
|
||
|
}
|