10 lines
174 B
Nix
10 lines
174 B
Nix
{ inputs, pkgs, ... }:
|
|
{
|
|
flake.modules.homeManager.base = { pkgs, ... }:
|
|
{
|
|
imports = with inputs.self.modules.homeManager; [
|
|
git
|
|
shell-tools
|
|
];
|
|
};
|
|
} |