mirror of
https://git.sr.ht/~magic_rb/dotfiles
synced 2024-11-27 10:36:12 +01:00
23 lines
408 B
Nix
23 lines
408 B
Nix
{ config, pkgs, ... }:
|
|
{
|
|
services.xserver = {
|
|
enable = true;
|
|
|
|
windowManager = {
|
|
i3.enable = true;
|
|
};
|
|
|
|
displayManager = {
|
|
defaultSession = "none+i3";
|
|
};
|
|
|
|
videoDrivers = [ "nvidiaBeta" ];
|
|
libinput.enable = true;
|
|
};
|
|
|
|
hardware = {
|
|
opengl.driSupport32Bit = true;
|
|
# opengl.extraPackages32 = with pkgs.pkgsi686Linux; [ libva ]; # What does this do??
|
|
};
|
|
}
|