initial zeta config
This commit is contained in:
parent
fa12f695a8
commit
1003e1cce2
7 changed files with 60 additions and 14 deletions
24
zeta/configuration.nix
Normal file
24
zeta/configuration.nix
Normal 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";
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue