mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
Gabriel Arazas
c2a5840cce
It is also used exclusively by that host so pretty much useless as a shared module.
36 lines
749 B
Nix
36 lines
749 B
Nix
{ lib
|
|
|
|
# Include the private modules.
|
|
, isInternal ? false
|
|
}:
|
|
|
|
let
|
|
modules = [
|
|
./programs/blender.nix
|
|
./programs/cardboard-wm.nix
|
|
./programs/distrobox.nix
|
|
./programs/kiwmi.nix
|
|
./programs/pop-launcher.nix
|
|
./programs/wezterm.nix
|
|
./services/archivebox.nix
|
|
./services/gallery-dl.nix
|
|
./services/wezterm-mux-server.nix
|
|
./services/vouch-proxy.nix
|
|
./services/yt-dlp.nix
|
|
./workflows
|
|
];
|
|
privateModules = [
|
|
./profiles/archiving.nix
|
|
./profiles/browsers.nix
|
|
./profiles/desktop.nix
|
|
./profiles/dev.nix
|
|
./profiles/filesystem.nix
|
|
./profiles/gaming.nix
|
|
./profiles/i18n.nix
|
|
./profiles/server.nix
|
|
./profiles/vpn.nix
|
|
];
|
|
in
|
|
modules
|
|
++ (lib.optionals isInternal privateModules)
|