1
Files
flake-nixinator/nixos/nixtop/default.nix
2022-08-08 19:46:58 +02:00

18 lines
317 B
Nix

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