mirror of
https://github.com/ParkerTenBroeck/dotfiles.git
synced 2026-06-06 21:00:35 -04:00
17 lines
339 B
Nix
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" ];
|
|
};
|
|
}
|