{ config, lib, pkgs, ... }: { imports = [ ./hardware.nix ./devices.nix ]; networking.hostName = "specimen"; time.timeZone = "Europe/Berlin"; i18n.defaultLocale = "en_US.UTF-8"; users.users.mel = { isNormalUser = true; extraGroups = [ "wheel" ]; }; environment.systemPackages = with pkgs; [ vim git wget ]; services.openssh.enable = true; system.stateVersion = "24.11"; }