nixfiles/presets/home-manager/gaming.nix

18 lines
223 B
Nix
Raw Normal View History

2024-08-12 08:25:11 +01:00
{
tree,
lib,
...
}: let
inherit (lib.lists) flatten;
in {
imports = flatten (with tree.profiles.home-manager; [
apps.obs
(with gaming; [
steam
lutris
arrpc
2024-09-04 09:00:16 +01:00
minecraft
2024-08-12 08:25:11 +01:00
])
]);
2024-07-24 15:11:46 +01:00
}