nix-config/systems/galen/configuration.nix
2025-12-19 01:54:22 +01:00

28 lines
397 B
Nix

{
config,
lib,
pkgs,
...
}:
{
imports = [
./hardware-configuration.nix
../../all.nix
];
users.mara.enable = true;
modules.vmGuest.enable = true;
networking.hostName = "galen";
networking.networkmanager.enable = true;
time.timeZone = "Europe/Berlin";
i18n.defaultLocale = "en_IE.UTF-8";
console = {
keyMap = "de";
};
system.stateVersion = "25.11";
}