aboutsummaryrefslogblamecommitdiff
path: root/modules/systems/default.nix
blob: a543fe545e21393a487a0a60e246fffa61f267f4 (plain) (tree)
1
2
3
4
5
6
7
8
9

             

             

                  
             
               
    
 


                                                  





                                           
 
{pkgs, ... }:

{
  imports = [
    ./nix.nix
    ./software.nix
    ./ssh.nix
    ./users.nix
  ];

  boot.kernelPackages = pkgs.linuxPackages_latest;
  boot.tmpOnTmpfs = true;

  # Select internationalisation properties.
  i18n.defaultLocale = "en_US.UTF-8";
  console = {
    font = "Lat2-Terminus16";
    keyMap = "us";
  };
}