nixos/miku/configuration.nix
2025-06-28 17:43:04 +02:00

19 lines
353 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";
networking.hostId = "4d00f481";
# EurKey layout
services.xserver.xkb.layout = "eu";
}