28 lines
575 B
Nix
28 lines
575 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
../modules/roles/server.nix
|
|
../modules/common/base.nix
|
|
../modules/common/networking.nix
|
|
../modules/services/printing.nix
|
|
../modules/services/goaccess.nix
|
|
../modules/sites/porzh.me.nix
|
|
../modules/sites/levr.porzh.me.nix
|
|
];
|
|
|
|
services.openssh = {
|
|
enable = true;
|
|
settings = {
|
|
PasswordAuthentication = false ;
|
|
PubkeyAuthentication = true ;
|
|
};
|
|
};
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
btrfs-progs
|
|
cifs-utils
|
|
lm_sensors
|
|
wakeonlan
|
|
];
|
|
}
|
|
# vim: set ts=2 sw=2 sts=2 et :
|
|
|