summaryrefslogtreecommitdiff
path: root/modules/pi/default.nix
blob: 410dbd976cd4cbf855f0e9d6ccf269cc839cb2ee (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
  lib,
  secrets,
  ...
}:
{
  imports = [
    ./users.nix
    ./zram.nix
  ];

  time.timeZone = secrets.i18n.timezone;
  services.openssh.settings.PermitRootLogin = "prohibit-password";
  networking.firewall.enable = lib.mkForce false;
}