blob: 27fb53bb3afeb9927be424c14c07bbb39e4f5789 (
plain) (
tree)
|
|
{pkgs, ... }:
{
imports = [
./motd.nix
./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";
};
}
|