From f7d86625faff70ffc5447cc8f4fd44b987b8c197 Mon Sep 17 00:00:00 2001 From: Mel Date: Sun, 29 Dec 2024 20:26:12 +0100 Subject: Generated system configuration from Hetzner server Signed-off-by: Mel --- configuration/configuration.nix | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) (limited to 'configuration/configuration.nix') diff --git a/configuration/configuration.nix b/configuration/configuration.nix index c7d053b..2280b7d 100644 --- a/configuration/configuration.nix +++ b/configuration/configuration.nix @@ -1,5 +1,31 @@ -{ ... }: +{ + config, + lib, + pkgs, + ... +}: { - # nothing here for now :) + 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 + wget + ]; + + services.openssh.enable = true; + + system.stateVersion = "24.11"; } -- cgit 1.4.1