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

7 lines
133 B
Nix
Raw Normal View History

{ lib, config, ... }:
2024-12-02 03:57:34 -07:00
{
imports = [
(lib.mkIf config.hmOptions.thunderbird.enable ./email.nix)
2024-12-04 13:28:30 -07:00
./ssh.nix
2024-12-02 03:57:34 -07:00
];
}