nix/modules/home-manager/foxtrot.nix

18 lines
289 B
Nix
Raw Normal View History

2023-10-09 15:09:02 -05:00
{outputs, ...}: {
imports = with outputs.homeManagerModules; [
sway
sway-laptop
];
2023-10-17 23:37:05 -05:00
wayland.windowManager.sway = {
config = {
output = {
"BOE 0x0BCA Unknown" = {
mode = "2256x1504@60Hz";
scale = "1.25";
};
};
};
};
2023-10-09 15:09:02 -05:00
}