34 lines
594 B
Nix
34 lines
594 B
Nix
{outputs, ...}: let
|
|
scale = 1.25;
|
|
in {
|
|
imports = with outputs.homeManagerModules; [
|
|
sway
|
|
sway-laptop
|
|
# hyprland
|
|
];
|
|
|
|
home = {
|
|
stateVersion = "24.05";
|
|
};
|
|
|
|
wayland.windowManager.hyprland = {
|
|
settings = {
|
|
# See https://wiki.hyprland.org/Configuring/Keywords/ for more
|
|
monitor = [
|
|
"eDP-1,2256x1504@60,0x0,${toString scale}"
|
|
];
|
|
};
|
|
};
|
|
|
|
wayland.windowManager.sway = {
|
|
config = {
|
|
output = {
|
|
"BOE 0x0BCA Unknown" = {
|
|
mode = "2256x1504@60Hz";
|
|
scale = toString scale;
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|