{ config, lib, pkgs, ... }: { imports = [ ./hardware.nix ./devices.nix ./specimen.nix ]; nix.settings.experimental-features = [ "flakes" "nix-command" ]; networking.hostName = "specimen"; time.timeZone = "Europe/Berlin"; i18n.defaultLocale = "en_US.UTF-8"; users.mutableUsers = false; users.users = { mel = { isNormalUser = true; extraGroups = [ "wheel" ]; hashedPassword = "$y$j9T$ieEl5QNLNw/WwPlo8ltbW0$gFxLCTnPgalTvyEbElxrhSH49wrAOUAdjdVjw1NLtsC"; }; philip = { isNormalUser = true; extraGroups = [ "wheel" ]; hashedPassword = "$y$j9T$05voM5wlmF6HSrvOJ4Jtn1$fhAq/k2W6NYydFcwK/LiKGrRz/1NLM7MRUAGNrzy2e/"; }; }; environment.systemPackages = with pkgs; [ vim git wget ]; services.openssh.enable = true; system.stateVersion = "24.11"; }