blob: 7d85efc9879fa32aac86787fd6893ba3ff4775a8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
{ pkgs, ... }:
{
imports = [
./hardware-configuration.nix
./modules/network.nix
./modules/www.nix
./modules/sftp.nix
../../common.nix
];
services.openssh = {
enable = true;
settings = { PasswordAuthentication = false; };
};
boot.consoleLogLevel = 3;
networking.hostName = "kay";
environment.systemPackages = with pkgs; [ tmux ];
}
|