about summary refs log tree commit diff
path: root/configuration/configuration.nix
diff options
context:
space:
mode:
authorMel <einebeere@gmail.com>2024-12-29 20:26:12 +0100
committerMel <einebeere@gmail.com>2024-12-29 20:38:23 +0100
commitf7d86625faff70ffc5447cc8f4fd44b987b8c197 (patch)
treecbc4d71f2e3112819be85bec8c86dd506ac4f491 /configuration/configuration.nix
parentf4368190f65902ef4e539774623afa25b2831b87 (diff)
downloadspecimen-f7d86625faff70ffc5447cc8f4fd44b987b8c197.tar.zst
specimen-f7d86625faff70ffc5447cc8f4fd44b987b8c197.zip
Generated system configuration from Hetzner server
Signed-off-by: Mel <einebeere@gmail.com>
Diffstat (limited to 'configuration/configuration.nix')
-rw-r--r--configuration/configuration.nix30
1 files changed, 28 insertions, 2 deletions
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";
 }