1
0
mirror of https://github.com/tboerger/nixos-config synced 2024-11-26 07:43:45 +01:00
github.com-tboerger-nixos-c.../shared/global/general.nix

24 lines
314 B
Nix
Raw Normal View History

2022-02-20 17:46:48 +01:00
{ pkgs, lib, config, options, ... }:
2022-09-27 22:07:46 +02:00
with lib;
2022-02-20 17:46:48 +01:00
{
config = {
home-manager = {
useGlobalPkgs = true;
useUserPackages = true;
};
2022-02-20 17:46:48 +01:00
time = {
timeZone = "Europe/Berlin";
};
2022-02-20 17:46:48 +01:00
i18n = {
defaultLocale = "en_US.UTF-8";
2022-09-29 11:57:25 +02:00
};
console = {
keyMap = "de";
};
2022-02-20 17:46:48 +01:00
};
}