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

29 lines
558 B
Nix
Raw Normal View History

{ lib
2023-07-19 09:27:33 +00:00
# Import the private modules
, isInternal ? false
}:
let
modules = [
./files/mutable-files.nix
./programs/pop-launcher.nix
./services/archivebox.nix
2023-08-02 15:02:03 +00:00
./services/activitywatch.nix
./services/bleachbit.nix
./services/distant.nix
./services/gallery-dl.nix
2023-07-22 01:58:45 +00:00
./services/matcha.nix
./services/plover.nix
./services/yt-dlp.nix
];
privateModules = [
./profiles/desktop.nix
./profiles/dev.nix
./profiles/editors.nix
./profiles/i18n.nix
];
in
2023-07-19 09:27:33 +00:00
modules
++ (lib.optionals isInternal privateModules)