Files
nixos/machines/jupiter-server/configuration.nix
T
2023-10-13 22:45:35 +02:00

30 lines
549 B
Nix

{ config, pkgs, lib, ... }:
{
imports = [
./disks.nix
./hardware-configuration.nix
./environments.nix
];
networking.hostName = "jupiter-server";
boot.loader.systemd-boot.enable = true;
boot.loader.efi.canTouchEfiVariables = true;
boot.kernelPackages = pkgs.unstable.linuxPackages_latest;
# Configure keymap in X11
services.xserver = {
layout = "de";
xkbVariant = "";
};
# Configure console keymap
console.keyMap = "de";
system = {
stateVersion = "23.05";
autoUpgrade.enable = true;
};
}