13 lines
193 B
Nix
13 lines
193 B
Nix
{ inputs, pkgs, ... }:
|
|
{
|
|
flake.homeModules.base = { pkgs, ... }:
|
|
{
|
|
imports = with inputs.self.homeModules; [
|
|
rebuild
|
|
ssh
|
|
sops
|
|
git
|
|
shell-tools
|
|
];
|
|
};
|
|
} |