nixos/neko/configuration.nix

18 lines
319 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
];
# our hostname
networking.hostName = "neko";
# EurKey layout
services.xserver.xkb.layout = "eu";
}