18 lines
223 B
Nix
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
|
|
])
|
|
]);
|
|
}
|