about summary refs log tree commit diff
path: root/modules/systems/default.nix
blob: c5b065aa154274f29ac79278690602202dc0cc84 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{pkgs, ... }:

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

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

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