flake/systems/fuji/default.nix

24 lines
374 B
Nix
Raw Normal View History

{
pkgs,
...
}: {
2024-01-31 22:48:21 +01:00
imports = [./nvidia.nix];
2023-11-14 16:43:06 +01:00
services.xserver.videoDrivers = ["amdgpu"];
2023-11-07 15:29:56 +01:00
hm = {
home.packages = with pkgs; [ryujinx];
2024-02-13 16:57:02 +01:00
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"
];
};
};
}