nix/modules/home-manager/foxtrot.nix

34 lines
594 B
Nix
Raw Normal View History

2023-11-21 10:14:58 -06:00
{outputs, ...}: let
scale = 1.25;
2023-11-21 10:14:58 -06:00
in {
2023-10-09 15:09:02 -05:00
imports = with outputs.homeManagerModules; [
sway
sway-laptop
2023-11-29 21:27:15 -06:00
# hyprland
2023-10-09 15:09:02 -05:00
];
2023-10-17 23:37:05 -05:00
2023-12-04 09:14:13 -06:00
home = {
stateVersion = "24.05";
};
2023-11-07 21:30:26 -06:00
wayland.windowManager.hyprland = {
settings = {
# See https://wiki.hyprland.org/Configuring/Keywords/ for more
monitor = [
2023-11-21 10:14:58 -06:00
"eDP-1,2256x1504@60,0x0,${toString scale}"
2023-11-07 21:30:26 -06:00
];
};
};
2023-10-17 23:37:05 -05:00
wayland.windowManager.sway = {
config = {
output = {
"BOE 0x0BCA Unknown" = {
mode = "2256x1504@60Hz";
2023-11-21 10:14:58 -06:00
scale = toString scale;
2023-10-17 23:37:05 -05:00
};
};
};
};
2023-10-09 15:09:02 -05:00
}