diff options
| author | Mel <einebeere@gmail.com> | 2024-12-29 20:26:12 +0100 |
|---|---|---|
| committer | Mel <einebeere@gmail.com> | 2024-12-29 20:38:23 +0100 |
| commit | f7d86625faff70ffc5447cc8f4fd44b987b8c197 (patch) | |
| tree | cbc4d71f2e3112819be85bec8c86dd506ac4f491 /configuration/configuration.nix | |
| parent | f4368190f65902ef4e539774623afa25b2831b87 (diff) | |
| download | specimen-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.nix | 30 |
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"; } |
