central locale setting

This commit is contained in:
Your Name 2024-04-10 17:26:41 -04:00 committed by Richie Cahill
parent e12cf4bc74
commit c2465c6b9c
6 changed files with 8 additions and 9 deletions

View File

@ -5,12 +5,11 @@
...
}:
{
imports = [
../base/locale.nix
];
security.auditd.enable = true;
nixpkgs.config.allowUnfree = true;
i18n = {
defaultLocale = "en_US.utf8";
supportedLocales = [ "en_US.UTF-8/UTF-8" ];
};
boot = {
default = true;

View File

@ -1,6 +1,6 @@
{ pkgs, ... }:
{
time.timeZone = "America/New_York";
console.keyMap = "us";
networking = {
hostId = "1beb3026";

View File

@ -1,6 +1,6 @@
{ pkgs, lib, ... }:
{
time.timeZone = "America/New_York";
console.keyMap = "us";
networking = {
hostId = "1beb3027";

View File

@ -1,6 +1,6 @@
{ config, pkgs, ... }:
{
time.timeZone = "America/New_York";
console.keyMap = "us";
systemd.services.hydra-notify.serviceConfig.EnvironmentFile =
config.sops.secrets."hydra/environment".path;

View File

@ -3,7 +3,7 @@
{
imports = [
../programs.nix
../locale.nix
../../../../base/locale.nix
./hardware.nix
];
nixpkgs.config.allowUnfree = true;