From 4565542bb15101e20baa028ec4ceacc6391a2efb Mon Sep 17 00:00:00 2001 From: polygon Date: Sat, 16 Mar 2024 15:15:23 +0100 Subject: [PATCH] minor changes --- hosts/twinkpad/configuration.nix | 3 --- modules/common/default.nix | 8 ++++++++ modules/common/locales.nix | 2 +- 3 files changed, 9 insertions(+), 4 deletions(-) diff --git a/hosts/twinkpad/configuration.nix b/hosts/twinkpad/configuration.nix index cc36c3f..62480c2 100644 --- a/hosts/twinkpad/configuration.nix +++ b/hosts/twinkpad/configuration.nix @@ -59,10 +59,7 @@ # List packages installed in system profile. To search, run: # $ nix search wget environment.systemPackages = with pkgs; [ - neovim - wget kitty - git ]; # Some programs need SUID wrappers, can be configured further or are diff --git a/modules/common/default.nix b/modules/common/default.nix index e95e1e0..2d0dbbf 100644 --- a/modules/common/default.nix +++ b/modules/common/default.nix @@ -1,5 +1,13 @@ +{pkgs, config, ...}: { imports = [ ./locales.nix ]; + + environment.systemPackages = with pkgs; [ + git + just + neovim + wget + ]; } diff --git a/modules/common/locales.nix b/modules/common/locales.nix index 8a5b92e..32cf886 100644 --- a/modules/common/locales.nix +++ b/modules/common/locales.nix @@ -5,7 +5,7 @@ }: { - i18n.defaultLocale = "en_US.UTF-8"; + i18n.defaultLocale = "de_DE.UTF-8"; i18n.extraLocaleSettings = { LC_ADDRESS = "de_DE.UTF-8";