1
Files
flake-nixinator/system/nixtop/default.nix
2023-01-18 14:00:02 +01:00

23 lines
338 B
Nix

{
inputs,
config,
lib,
mylib,
pkgs,
...
}: rec {
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"];
};
}