mirror of
https://github.com/nikdoof/nixos-config.git
synced 2025-12-22 15:09:28 +00:00
First attempt at splitting out common config items
This commit is contained in:
17
common.nix
Normal file
17
common.nix
Normal file
@@ -0,0 +1,17 @@
|
||||
{ config, lib, pkgs, ... }:
|
||||
|
||||
{
|
||||
imports = [
|
||||
users.nix
|
||||
];
|
||||
|
||||
# Set your time zone.
|
||||
time.timeZone = "Europe/London";
|
||||
|
||||
# Select internationalisation properties.
|
||||
i18n.defaultLocale = "en_GB.UTF-8";
|
||||
console = {
|
||||
font = "Lat2-Terminus16";
|
||||
useXkbConfig = true; # use xkb.options in tty.
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user