1
Files
flake-nixinator/nixos/nixinator/default.nix
2022-08-08 17:42:01 +02:00

25 lines
451 B
Nix

{ config, lib, pkgs, musnix, ... }:
{
imports = [
# Include the results of the hardware scan.
./hardware-configuration.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" ];
};
}