nix/modules/home-manager/foxtrot.nix

28 lines
502 B
Nix
Raw Normal View History

2023-10-09 15:09:02 -05:00
{outputs, ...}: {
imports = with outputs.homeManagerModules; [
sway
sway-laptop
2023-11-07 21:30:26 -06:00
hyprland
2023-10-09 15:09:02 -05:00
];
2023-10-17 23:37:05 -05:00
2023-11-07 21:30:26 -06:00
wayland.windowManager.hyprland = {
settings = {
# See https://wiki.hyprland.org/Configuring/Keywords/ for more
monitor = [
"eDP-1,2256x1504@60,0x0,1.5"
];
};
};
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
}