Initial commit of new configuration

This commit is contained in:
caem 2023-05-24 21:35:59 +02:00
commit 3f3ec1c47c
17 changed files with 278 additions and 0 deletions

8
sets/drivers/nvidia.nix Normal file
View file

@ -0,0 +1,8 @@
{ config, pkgs, ... }:
{
services.xserver.videoDrivers = [ "nvidia" ];
hardware.opengl.enable = true;
hardware.nvidia.modesetting.enable = true;
}

7
sets/drivers/tablet.nix Normal file
View file

@ -0,0 +1,7 @@
{ config, pkgs, ... }:
{
hardware.opentabletdriver.enable = true;
hardware.opentabletdriver.daemon.enable = true;
}