1

rename host specific confs

This commit is contained in:
2022-07-29 16:04:11 +02:00
parent 72567a19fe
commit 7630b9e59d
4 changed files with 2 additions and 2 deletions

View File

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