1
Files
flake-nixinator/system/nixtop/default.nix
2023-05-24 20:25:25 +02:00

24 lines
353 B
Nix

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