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

{
  imports = [
    ./boot.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";
  };
}