nix-config/modules/home-manager/default.nix

22 lines
197 B
Nix

{
config,
inputs,
lib,
self,
pkgs,
...
}:
{
imports = [
(import ./cli {
inherit
config
inputs
lib
self
pkgs
;
})
];
}