nixcfg/hosts/pacifidlog/home.nix

28 lines
581 B
Nix

{self, ...}: {
home-manager = {
sharedModules = [
{
wayland.windowManager.sway.config.output = {
"eDP-1" = {
adaptive_sync = "on";
scale = "2.0";
};
};
ar.home = {
desktop.hyprland.laptopMonitors = ["eDP-1, 1600x2560@144, 0x0, 2, transform, 1"];
# services = {
# easyeffects = {
# enable = true;
# preset = "fw13-easy-effects";
# };
# };
};
}
];
users.aly = self.homeManagerModules.aly;
};
}