Feature: New Jupiter Server machine

This commit is contained in:
marthsincemelee
2023-10-13 22:45:35 +02:00
parent 718a1d97d1
commit fa7587edf0
3 changed files with 64 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
{ 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;
};
}