1
Files
flake-nixinator/nixos/configuration-nixinator.nix
2022-07-29 16:04:11 +02:00

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