nixos/beta/configuration.nix
Christoph Cullmann 0624de4676
use network manager
move hardware settings to one file
2024-07-04 18:44:40 +02:00

24 lines
579 B
Nix

# Edit this configuration file to define what should be installed on
# your system. Help is available in the configuration.nix(5) man page
# and in the NixOS manual (accessible by running `nixos-help`).
{ config, pkgs, ... }:
{
imports =
[
# Include the results of the hardware scan.
./hardware-configuration.nix
# Shared config of all machines
/data/nixos/common.nix
];
# our hostname and an ID for ZFS
networking.hostName = "beta";
networking.hostId = "3f20def9";
# german laptop keyboard
services.xserver.xkb.layout = "de";
}