nixfiles/presets/home-manager/gaming.nix

18 lines
224 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
])
]);
}