1

trusted users + restructure folders

This commit is contained in:
2022-08-11 14:17:06 +02:00
parent f3d9fe98ae
commit a957ebf480
20 changed files with 2 additions and 1 deletions

View File

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