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