2023-01-15 18:56:16 +01:00
|
|
|
# Edit this configuration file to define what should be installed on
|
|
|
|
# your system. Help is available in the configuration.nix(5) man page
|
2023-06-09 18:26:35 +02:00
|
|
|
# and in the NixOS manual (accessible by running `nixos-help`).
|
2023-01-15 18:56:16 +01:00
|
|
|
|
|
|
|
{ config, pkgs, ... }:
|
2024-08-18 18:53:31 +02:00
|
|
|
|
2024-08-19 23:11:31 +02:00
|
|
|
{
|
2023-01-15 18:56:16 +01:00
|
|
|
imports =
|
|
|
|
[
|
|
|
|
# Include the results of the hardware scan.
|
|
|
|
./hardware-configuration.nix
|
|
|
|
|
|
|
|
# Shared config of all machines
|
2024-10-03 00:50:52 +02:00
|
|
|
/data/nixos/share/common.nix
|
2023-01-15 18:56:16 +01:00
|
|
|
];
|
|
|
|
|
2024-05-29 21:07:09 +02:00
|
|
|
# our hostname and an ID for ZFS
|
2023-10-24 21:47:13 +02:00
|
|
|
networking.hostName = "neko";
|
2024-05-29 21:07:09 +02:00
|
|
|
networking.hostId = "cf5a5ee6";
|
2024-08-19 23:11:31 +02:00
|
|
|
|
2024-07-04 17:11:41 +02:00
|
|
|
# EurKey layout
|
|
|
|
services.xserver.xkb.layout = "eu";
|
2023-01-15 18:56:16 +01:00
|
|
|
}
|