2025-09-05 09:59:31 +02:00
|
|
|
{pkgs, ...}: {
|
|
|
|
|
imports = [
|
|
|
|
|
../modules/roles/server.nix
|
|
|
|
|
../modules/common/base.nix
|
|
|
|
|
../modules/common/networking.nix
|
|
|
|
|
../modules/services/printing.nix
|
2025-09-24 23:33:06 +02:00
|
|
|
../modules/services/goaccess.nix
|
2025-09-19 17:40:17 +02:00
|
|
|
../modules/sites/porzh.me.nix
|
2025-09-20 14:57:06 +02:00
|
|
|
../modules/sites/levr.porzh.me.nix
|
2025-09-05 09:59:31 +02:00
|
|
|
];
|
|
|
|
|
|
2025-09-26 08:36:37 +02:00
|
|
|
services.openssh = {
|
|
|
|
|
enable = true;
|
|
|
|
|
settings = {
|
|
|
|
|
PasswordAuthentication = false ;
|
|
|
|
|
PubkeyAuthentication = true ;
|
|
|
|
|
};
|
|
|
|
|
};
|
2025-09-05 09:59:31 +02:00
|
|
|
|
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
|
btrfs-progs
|
|
|
|
|
cifs-utils
|
|
|
|
|
lm_sensors
|
2025-09-22 08:41:35 +02:00
|
|
|
wakeonlan
|
2025-09-05 09:59:31 +02:00
|
|
|
];
|
|
|
|
|
}
|
|
|
|
|
# vim: set ts=2 sw=2 sts=2 et :
|
|
|
|
|
|