diff --git a/modules/generic.nix b/modules/generic.nix index 899023c..2549943 100644 --- a/modules/generic.nix +++ b/modules/generic.nix @@ -17,7 +17,12 @@ in }; time.timeZone = "Europe/Berlin"; - i18n.defaultLocale = "en_GB.UTF-8"; + i18n = { + defaultLocale = "en_GB.UTF-8"; + extraLocaleSettings = { + LC_TIME = "de_DE.UTF-8"; + }; + }; zramSwap = { enable = true; @@ -39,6 +44,11 @@ in LOGGENERATIONS = "14"; }; + services.logrotate = { + enable = true; + }; + + users.defaultUserShell = pkgs.zsh; security.sudo.wheelNeedsPassword = false;