dotfiles/modules/amd.nix
2026-05-22 22:27:47 -04:00

17 lines
339 B
Nix

{ pkgs, ... }:
{
hardware.graphics = {
enable = true;
enable32Bit = true;
};
systemd.packages = with pkgs; [ lact ];
systemd.services.lactd.wantedBy = [ "multi-user.target" ];
home-manager.users.may.home.packages = with pkgs; [ lact ];
services.xserver = {
enable = true;
videoDrivers = [ "amdgpu" ];
};
}