mirror of
https://github.com/alyraffauf/nixcfg.git
synced 2024-11-22 15:43:55 -05:00
21 lines
265 B
Nix
21 lines
265 B
Nix
{
|
|
config,
|
|
inputs,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}: {
|
|
home-manager = {
|
|
sharedModules = [
|
|
{
|
|
ar.home = {
|
|
desktop = {
|
|
hyprland.autoSuspend = false;
|
|
sway.autoSuspend = false;
|
|
};
|
|
};
|
|
}
|
|
];
|
|
};
|
|
}
|