mirror of
https://github.com/ParkerTenBroeck/dotfiles.git
synced 2026-06-06 21:00:35 -04:00
16 lines
277 B
Nix
16 lines
277 B
Nix
{ pkgs, ... }:
|
|
|
|
{
|
|
hardware.graphics = {
|
|
enable = true;
|
|
enable32Bit = true;
|
|
};
|
|
|
|
systemd.packages = with pkgs; [ lact ];
|
|
systemd.services.lactd.wantedBy = [ "multi-user.target" ];
|
|
|
|
services.xserver = {
|
|
enable = true;
|
|
videoDrivers = [ "amdgpu" ];
|
|
};
|
|
}
|