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

{
  imports = [
    ./boot.nix
    ./hardware.nix
    ./motd.nix
    ./network.nix
    ./nix.nix
    ./software.nix
    ./ssh.nix
    ./users.nix
  ];

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