blob: 5085a42151aef508cad393d5983858c5ac88ec97 (
plain) (
tree)
|
|
{ pkgs, ... }:
{
imports = [
./hardware-configuration.nix
./modules/network.nix
./modules/www.nix
../../common.nix
];
services.openssh = {
enable = true;
settings = { PasswordAuthentication = false; };
};
boot.consoleLogLevel = 3;
networking.hostName = "kay";
environment.systemPackages = with pkgs; [ tmux ];
}
|