18 lines
319 B
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 = "miku";
|
|
|
|
# EurKey layout
|
|
services.xserver.xkb.layout = "eu";
|
|
}
|