1

rename host specific confs

This commit is contained in:
2022-07-29 16:04:11 +02:00
parent 72567a19fe
commit 7630b9e59d
4 changed files with 2 additions and 2 deletions

View File

@ -0,0 +1,19 @@
{ config, lib, pkgs, ... }:
{
imports = [
# Include the results of the hardware scan.
./hardware-configuration-nixtop.nix
];
networking.hostName = "nixtop"; # Define your hostname.
services.xserver = {
# Configure keymap in X11
layout = "de";
xkbVariant = "nodeadkeys";
# Proprietary graphics drivers
videoDrivers = [ "intel" ];
};
}