initial commit. after fucking it up once

This commit is contained in:
Ittihadyya 2024-11-03 19:50:18 +02:00
commit b7cea98e99
48 changed files with 3437 additions and 0 deletions

11
locale.mod.nix Normal file
View file

@ -0,0 +1,11 @@
{
universal.modules = [
(
{ config, ... }:
{
time.timeZone = "Europe/Bucharest";
i18n.defaultLocale = "en_US.UTF-8";
}
)
];
}