nixfiles/presets/home-manager/gaming.nix
2024-08-12 08:25:11 +01:00

18 lines
223 B
Nix

{
tree,
lib,
...
}: let
inherit (lib.lists) flatten;
in {
imports = flatten (with tree.profiles.home-manager; [
apps.obs
(with gaming; [
steam
lutris
arrpc
minecraft
])
]);
}