29 lines
550 B
Nix
29 lines
550 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.profiles.default.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;
|
|
}
|
|
];
|
|
}
|