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

17
system/nixtop/default.nix Normal file
View File

@ -0,0 +1,17 @@
{ inputs, config, lib, mylib, pkgs, ... }:
rec {
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
];
services.xserver = {
# Configure keymap in X11
layout = "de";
xkbVariant = "nodeadkeys";
# Proprietary graphics drivers
videoDrivers = [ "intel" ];
};
}