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

 

                                
                    

    





                                                   
                              
                                                   
 
{ pkgs, ... }:

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

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

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