1

restructure

This commit is contained in:
2022-08-08 17:42:01 +02:00
parent 5d69b16661
commit b0e740eb4a
9 changed files with 6 additions and 6 deletions

View File

@ -0,0 +1,24 @@
{ 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" ];
};
}