24 lines
466 B
Nix
24 lines
466 B
Nix
{ pkgs, ... }:
|
|
{
|
|
imports = [
|
|
./nvidia.nix
|
|
../../programs/games.nix
|
|
];
|
|
|
|
services.xserver.videoDrivers = [ "amdgpu" ];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
wineWowPackages.waylandFull
|
|
];
|
|
|
|
# hm = {
|
|
# wayland.windowManager.hyprland.settings = {
|
|
# monitor = "DP-1,3840x2160@144,0x0,1.5";
|
|
# xwayland.force_zero_scaling = true;
|
|
# env = [
|
|
# "GDK_SCALE,1.5"
|
|
# "XCURSOR_SIZE,24"
|
|
# ];
|
|
# };
|
|
# };
|
|
}
|