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";