Added common server attributes
This commit is contained in:
parent
6a46666f1a
commit
a99fd23960
19
roles/server_common.nix
Normal file
19
roles/server_common.nix
Normal file
|
@ -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;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue