diff options
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"; } |
