nixcfg/hosts/petalburg/home.nix

19 lines
384 B
Nix
Raw Normal View History

2024-11-24 20:32:06 -05:00
{self, ...}: {
home-manager = {
sharedModules = [
{
wayland.windowManager.sway.config.output = {
"eDP-1" = {
adaptive_sync = "on";
scale = "2.0";
};
};
2024-11-24 21:19:55 -05:00
ar.home.desktop.hyprland.laptopMonitors = ["eDP-1,1920x1200@165, 0x0, 1, vrr, 0"];
2024-11-24 20:32:06 -05:00
}
];
users.aly = self.homeManagerModules.aly;
};
}