nixcfg/hosts/petalburg/home.nix

21 lines
395 B
Nix

{
config,
inputs,
lib,
pkgs,
...
}: {
home-manager = {
sharedModules = [
{
ar.home.desktop.hyprland = {
tabletMode.enable = true;
};
wayland.windowManager.hyprland.extraConfig = ''
exec-once = ${lib.getExe inputs.iio-hyprland.packages.${pkgs.system}.default} "desc:Samsung Display Corp. 0x4152"
'';
}
];
};
}