Files
dendritic/modules/programs/base.nix
John Lancaster cf2ba8731d reorg
2026-03-11 08:49:07 -05:00

10 lines
174 B
Nix

{ inputs, pkgs, ... }:
{
flake.modules.homeManager.base = { pkgs, ... }:
{
imports = with inputs.self.modules.homeManager; [
git
shell-tools
];
};
}