nixfiles/presets/home-manager/devGui.nix

18 lines
239 B
Nix
Raw Normal View History

2024-07-24 15:11:46 +01:00
{
lib,
tree,
...
}: let
inherit (lib.lists) flatten;
in {
imports = flatten (with tree; [
(with presets.home-manager; [
devBase
])
(with profiles.home-manager; [
programming.editors.vscode
])
]);
}