Rename default configs for host and user to common.nix

This commit is contained in:
SebastianStork 2024-04-02 19:34:31 +02:00
parent 968b5bfa86
commit 03bc6c09a0
5 changed files with 6 additions and 5 deletions

View file

@ -10,7 +10,6 @@
trusted-users = ["root" "@wheel"];
};
console.keyMap = "de-latin1-nodeadkeys";
time.timeZone = "Europe/Berlin";
i18n.defaultLocale = "en_US.UTF-8";
i18n.extraLocaleSettings = {
@ -25,6 +24,8 @@
LC_TIME = "de_DE.UTF-8";
};
console.keyMap = "de-latin1-nodeadkeys";
environment.systemPackages = [
pkgs.git
pkgs.neovim

View file

@ -1,6 +1,6 @@
{pkgs, ...}: {
imports = [
../default.nix
../common.nix
./hardware.nix
];

View file

@ -1,6 +1,6 @@
{pkgs, ...}: {
imports = [
../default.nix
../common.nix
./hardware.nix
];