Files
nix/hosts/elara/hardware/sas/display.nix
2025-02-10 13:30:18 +00:00

29 lines
533 B
Nix

{ ... }:
{
boot.kernelParams = [ "video=eDP-1:1920x1200@60" ];
home-manager.sharedModules = [
{
wayland.windowManager.hyprland.settings.monitor = "eDP-1, 1920x1200@60, 0x0, 1";
programs = {
vscode.userSettings."window.zoomLevel" = (1.25 - 1) / 0.2;
obs-studio.resolution = {
base = {
x = 1920;
y = 1200;
};
output = {
x = 1920;
y = 1200;
};
};
};
theme.cursor.size = 24;
}
];
}