25 lines
461 B
Nix
25 lines
461 B
Nix
{ config, lib, pkgs, musnix, ... }:
|
|
|
|
{
|
|
imports = [
|
|
# Include the results of the hardware scan.
|
|
./hardware-configuration-nixinator.nix
|
|
];
|
|
|
|
networking.hostName = "nixinator"; # Define your hostname.
|
|
|
|
musnix = {
|
|
enable = true;
|
|
# musnix.soundcardPciId = ;
|
|
};
|
|
|
|
services.xserver = {
|
|
# Configure keymap in X11
|
|
layout = "us";
|
|
xkbVariant = "altgr-intl";
|
|
|
|
# Proprietary graphics drivers
|
|
videoDrivers = [ "nvidia" ];
|
|
};
|
|
}
|