1
Files
flake-nixinator/nixos/nixinator/default.nix
2022-08-08 19:46:58 +02:00

23 lines
396 B
Nix

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