summaryrefslogblamecommitdiff
path: root/hosts/kay/configuration.nix
blob: e21535386c4ad79d94cd44f5476ebe98bb5c2b13 (plain) (tree)
1
2
3
4
5
6
7
8
9
              

 

                                
                         
                     
                      
                    

    

                      
                                            


                           
                              
                                                   
 
{ 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 ];
}