27 lines
514 B
Nix
27 lines
514 B
Nix
# enoko is my framework 13-inch AMD laptop, running nixos
|
|
{ ... }:
|
|
{
|
|
imports = [
|
|
./global.nix
|
|
./global.linux.nix
|
|
./features/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";
|
|
# };
|
|
}
|