initial zeta config

This commit is contained in:
Christoph Cullmann 2025-07-04 17:44:35 +02:00
parent fa12f695a8
commit 1003e1cce2
No known key found for this signature in database
7 changed files with 60 additions and 14 deletions

24
zeta/configuration.nix Normal file
View file

@ -0,0 +1,24 @@
{ config, pkgs, ... }:
{
imports =
[
# Include the results of the hardware scan.
./hardware-configuration.nix
# Include the necessary packages and configuration for Apple Silicon support.
./apple-silicon-support
# Shared config of all machines
/data/nixos/share/common.nix
];
# AArch64 machine
nixpkgs.hostPlatform = "aarch64-linux";
boot.loader.efi.canTouchEfiVariables = false;
# our hostname
networking.hostName = "zeta";
networking.hostId = "cce4e4c1";
# german laptop keyboard
services.xserver.xkb.layout = "de";
}