default.nix (583B)
1 extra: 2 { config, lib, pkgs, ... }: 3 { 4 imports = [ 5 #./footswitch 6 #./fail-notifier 7 ./mailz 8 ]; 9 10 #services.mongodb.enable = true; 11 #services.redis.enable = true; 12 13 services.openssh.enable = true; 14 services.openssh.settings.PasswordAuthentication = false; 15 services.openssh.settings.PermitRootLogin = "no"; 16 17 services.atd.enable = true; 18 19 #services.logrotate.enable = false; 20 #services.logrotate.extraConfig = '' 21 # dateext 22 # dateformat %Y-%m-%d. 23 # compresscmd ${pkgs.xz.bin}/bin/xz 24 # uncompresscmd ${pkgs.xz.bin}/bin/unxz 25 # compressext .xz 26 #''; 27 }