mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 16:57:55 +00:00
33 lines
656 B
Nix
33 lines
656 B
Nix
|
{ lib
|
||
|
|
||
|
# Include the private modules.
|
||
|
, isInternal ? false
|
||
|
}:
|
||
|
|
||
|
let
|
||
|
modules = [
|
||
|
./programs/cardboard-wm.nix
|
||
|
./programs/kiwmi.nix
|
||
|
./programs/pop-launcher.nix
|
||
|
./programs/wezterm.nix
|
||
|
./services/archivebox.nix
|
||
|
./services/gallery-dl.nix
|
||
|
./services/yt-dlp.nix
|
||
|
./workflows
|
||
|
];
|
||
|
privateModules = [
|
||
|
./profiles/archiving.nix
|
||
|
./profiles/desktop.nix
|
||
|
./profiles/dev.nix
|
||
|
./profiles/filesystem.nix
|
||
|
./profiles/gaming.nix
|
||
|
./profiles/i18n.nix
|
||
|
./profiles/server.nix
|
||
|
./profiles/vpn.nix
|
||
|
./tasks/backup-archive
|
||
|
./tasks/multimedia-archive
|
||
|
];
|
||
|
in
|
||
|
modules
|
||
|
++ (lib.optionals isInternal privateModules)
|