nixos/neko/configuration.nix

23 lines
461 B
Nix

{ config, pkgs, ... }:
{
imports =
[
# Include the results of the hardware scan.
./hardware-configuration.nix
# Shared config of all machines
/data/nixos/share/common.nix
];
# x86-64 machine
nixpkgs.hostPlatform = "x86_64-linux";
boot.loader.efi.canTouchEfiVariables = true;
# our hostname
networking.hostName = "neko";
networking.hostId = "4836f248";
# EurKey layout
services.xserver.xkb.layout = "eu";
}