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

19
nixos/nixtop/default.nix Normal file
View File

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