nix-config/home/enoko.nix
2024-08-21 14:29:24 +02:00

25 lines
489 B
Nix

# enoko is my framework 13-inch AMD laptop, running nixos
{ ... }: {
imports = [
./global.nix
./common/desktop
];
config.monitors = [
{
name = "eDP-1";
width = 2256;
height = 1504;
workspace = "1";
primary = true;
position = "0x0";
scale = "1.175000";
}
];
# Fix HiDPI scaling
# config.wayland.windowManager.hyprland = {
# settings.xwayland.force_zero_scaling = true;
# settings.env = "GDK_SCALE,2";
# };
}