nixcfg/hosts/rustboro/home.nix

25 lines
545 B
Nix
Raw Normal View History

{self, ...}: {
home-manager = {
sharedModules = [
{
wayland.windowManager.sway.config.output = {"LG Display 0x0569 Unknown".scale = "1.25";};
ar.home = {
desktop.hyprland.laptopMonitors = ["desc:LG Display 0x0569,preferred,auto,1.25"];
2024-09-28 19:58:05 -04:00
services = {
easyeffects = {
enable = true;
preset = "LoudnessEqualizer";
};
gammastep.enable = true;
};
};
}
];
users.aly = self.homeManagerModules.aly;
};
2024-03-28 19:52:15 -04:00
}