mirror of
https://github.com/Unkn0wnCat/dotfiles.git
synced 2025-05-31 07:16:09 +02:00
Add configuration for amon
This commit is contained in:
parent
ff459f51a4
commit
413b12b4e1
6 changed files with 113 additions and 16 deletions
40
nixos/amon/configuration.nix
Normal file
40
nixos/amon/configuration.nix
Normal 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.
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue