add ryujinx and xbox controller software

This commit is contained in:
uku 2023-11-19 15:21:26 +01:00
parent 5baad661dd
commit e56ecd5c9c
Signed by: uku
GPG key ID: 7D01D7B105E77166
2 changed files with 10 additions and 1 deletions

View file

@ -31,6 +31,9 @@ in {
hardware = { hardware = {
opengl.enable = true; opengl.enable = true;
pulseaudio.enable = false; pulseaudio.enable = false;
xone.enable = true;
xpadneo.enable = true;
}; };
sound.enable = true; sound.enable = true;

View file

@ -1,7 +1,13 @@
{lib, ...}: { {
lib,
pkgs,
...
}: {
# imports = [./nvidia.nix]; # imports = [./nvidia.nix];
services.xserver.videoDrivers = ["amdgpu"]; services.xserver.videoDrivers = ["amdgpu"];
hm.wayland.windowManager.hyprland.settings.monitor = lib.mkForce ["DP-1,1920x1200@60,0x0,1" "HDMI-A-1,1440x900@60,1920x300,1"]; hm.wayland.windowManager.hyprland.settings.monitor = lib.mkForce ["DP-1,1920x1200@60,0x0,1" "HDMI-A-1,1440x900@60,1920x300,1"];
users.users.leo.packages = with pkgs; [ryujinx];
} }