mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-23 10:43:55 -05:00
29 lines
592 B
Nix
29 lines
592 B
Nix
{self, ...}: {
|
|
home-manager = {
|
|
sharedModules = [
|
|
{
|
|
wayland.windowManager = {
|
|
hyprland.settings = {
|
|
input = {
|
|
touchdevice.output = "eDP-1";
|
|
};
|
|
};
|
|
};
|
|
|
|
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;
|
|
};
|
|
}
|