mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 08:33:55 -05:00
28 lines
604 B
Nix
28 lines
604 B
Nix
|
{self, ...}: {
|
||
|
home-manager = {
|
||
|
sharedModules = [
|
||
|
{
|
||
|
wayland.windowManager = {
|
||
|
hyprland.settings = {
|
||
|
input = {
|
||
|
touchdevice = {
|
||
|
transform = 1;
|
||
|
output = "eDP-1";
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
|
||
|
ar.home = {
|
||
|
desktop.hyprland = {
|
||
|
laptopMonitors = ["desc:Lenovo Group Limited Go Display 0x00888888, 1600x2560@144, 0x0, 2, transform, 1"];
|
||
|
tabletMode.enable = true;
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
];
|
||
|
|
||
|
users.aly = self.homeManagerModules.aly;
|
||
|
};
|
||
|
}
|