summaryrefslogtreecommitdiff
path: root/os/fscusat/configuration.nix
blob: 68d97652ff62f395ab291d79d81ce39d1157aa96 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ ... }:

{
  imports = [
    ../server/configuration.nix
    ./hardware-configuration.nix

    ./modules/network.nix
    ./modules/www.nix
    ./modules/mirror
  ];

  networking.hostName = "fscusat";
  services.openssh.ports = [
    22
    465
  ];
}