2021-07-01 01:02:55 +01:00
|
|
|
{ pkgs, variables, ... }:
|
|
|
|
|
|
|
|
{
|
|
|
|
# Select internationalisation properties.
|
2021-07-01 02:23:08 +01:00
|
|
|
|
|
|
|
console = {
|
|
|
|
keyMap = "us";
|
|
|
|
font = "Lat2-Terminus16";
|
2021-07-01 01:02:55 +01:00
|
|
|
};
|
|
|
|
|
2021-07-01 02:23:08 +01:00
|
|
|
i18n.defaultLocale = "en_US.UTF-8";
|
|
|
|
|
2021-07-01 01:02:55 +01:00
|
|
|
nix = {
|
|
|
|
autoOptimiseStore = true;
|
|
|
|
nixPath = [
|
|
|
|
"nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixos"
|
|
|
|
"nixos-config=/etc/nixos/hosts/${variables.hostname}/default.nix"
|
|
|
|
"/nix/var/nix/profiles/per-user/root/channels"
|
|
|
|
];
|
|
|
|
};
|
|
|
|
|
|
|
|
nixpkgs = {
|
|
|
|
config = {
|
|
|
|
allowUnfree = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|