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