nixcfg/hosts/mandarin/home.nix

21 lines
265 B
Nix
Raw Normal View History

2024-06-14 14:05:59 -04:00
{
config,
inputs,
lib,
pkgs,
...
}: {
home-manager = {
sharedModules = [
{
ar.home = {
2024-06-14 14:05:59 -04:00
desktop = {
hyprland.autoSuspend = false;
sway.autoSuspend = false;
};
};
}
];
};
}