1
Files
flake-nixinator/nixos/nixtop/default.nix
2022-08-08 17:42:01 +02:00

20 lines
369 B
Nix

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