1
Files
flake-nixinator/nixos/configuration-desktop.nix
2022-07-13 20:18:52 +02:00

20 lines
381 B
Nix

{ 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" ];
};
}