nixcfg/hosts/mandarin/home.nix
Aly Raffauf 945fbdcc39
restructure flake (#14)
* initial commit

* simplify output structure

* don't pull wallpaper from flake, use fetchGit

* swap nixvim for neovim

* fetch wallpaper correctly

* move nixvim to aly home config
2024-07-09 19:17:53 -04:00

20 lines
255 B
Nix

{
config,
lib,
pkgs,
...
}: {
home-manager = {
sharedModules = [
{
ar.home = {
desktop = {
hyprland.autoSuspend = false;
sway.autoSuspend = false;
};
};
}
];
};
}