1

add laptop config

This commit is contained in:
2022-07-13 20:18:52 +02:00
parent a8308fa4b7
commit ff5094e2ee
5 changed files with 94 additions and 32 deletions

View File

@ -0,0 +1,19 @@
{ config, lib, pkgs, ... }:
{
imports = [
# Include the results of the hardware scan.
./hardware-configuration-desktop.nix
];
networking.hostName = "nixinator"; # Define your hostname.
services.xserver = {
# Configure keymap in X11
layout = "us";
xkbVariant = "altgr-intl";
# Proprietary graphics drivers
videoDrivers = [ "nvidia" ];
};
}