1
Files
flake-nixinator/nixos/configuration-nixtop.nix
2022-07-29 16:04:11 +02:00

20 lines
376 B
Nix

{ 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" ];
};
}