nixcfg/hosts/petalburg/home.nix

22 lines
442 B
Nix
Raw Normal View History

2024-03-28 19:52:15 -04:00
{
2024-04-07 22:16:33 -04:00
inputs,
config,
pkgs,
lib,
...
}: {
2024-05-21 22:28:52 -04:00
home-manager = {
sharedModules = [
{
2024-05-27 21:42:51 -04:00
alyraffauf.desktop.hyprland = {
2024-05-21 22:28:52 -04:00
tabletMode.enable = true;
};
wayland.windowManager.hyprland.extraConfig = ''
exec-once = ${lib.getExe inputs.iio-hyprland.packages.${pkgs.system}.default} "desc:Samsung Display Corp. 0x4152"
'';
2024-05-21 22:28:52 -04:00
}
];
users.aly = import ../../homes/aly.nix;
2024-03-28 19:52:15 -04:00
};
}