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

 

                                
                         
                    

    





                                                   
                              
                                                   
 
{ pkgs, ... }:

{
  imports = [
    ./hardware-configuration.nix
    ./modules/network.nix
    ../../common.nix
  ];

  services.openssh = {
    enable = true;
    settings = { PasswordAuthentication = false; };
  };

  boot.consoleLogLevel = 3;
  networking.hostName = "kay";
  environment.systemPackages = with pkgs; [ tmux ];
}