Add configuration for amon

This commit is contained in:
Kevin Kandlbinder 2023-04-24 12:28:23 +02:00
parent ff459f51a4
commit 413b12b4e1
Signed by: kevin
GPG key ID: 1460B586646E180D
6 changed files with 113 additions and 16 deletions

View file

@ -0,0 +1,40 @@
{ config, pkgs, ... }:
{
imports =
[
./hardware-configuration.nix
];
boot.loader.grub.enable = true;
boot.loader.grub.version = 2;
boot.loader.grub.device = "/dev/sda";
networking.hostName = "amon";
networking.domain = "srv.1in9.net";
time.timeZone = "Europe/Berlin";
i18n.defaultLocale = "en_US.UTF-8";
console = {
font = "Lat2-Terminus16";
keyMap = "de";
};
users.users.kevin = {
isNormalUser = true;
extraGroups = [ "wheel" ];
};
environment.systemPackages = with pkgs; [
vim
wget
curl
htop
git
];
system.stateVersion = "22.11"; # No touchy.
}