forked from DGNum/liminix
081b9ab370
Like nixpkgs itself, we can control Liminix's package set via the module system. Signed-off-by: Raito Bezarius <masterancpp@gmail.com>
41 lines
740 B
Nix
41 lines
740 B
Nix
# Import all of the modules, used in the documentation generator. Not
|
|
# currently expected to work in an actual configuration, but it would
|
|
# be nice if it did.
|
|
|
|
{
|
|
imports = [
|
|
./base.nix
|
|
./bridge
|
|
./busybox.nix
|
|
./dhcp6c
|
|
./dnsmasq
|
|
./firewall
|
|
./hardware.nix
|
|
./hostapd
|
|
./hostname.nix
|
|
./kernel
|
|
./mdevd.nix
|
|
./mount
|
|
./network
|
|
./ntp
|
|
./outputs.nix
|
|
./outputs/ext4fs.nix
|
|
./outputs/initramfs.nix
|
|
./outputs/jffs2.nix
|
|
./outputs/kexecboot.nix
|
|
./outputs/mtdimage.nix
|
|
./outputs/tftpboot.nix
|
|
./outputs/ubifs.nix
|
|
./outputs/ubimage.nix
|
|
./outputs/vmroot.nix
|
|
./ppp
|
|
./ramdisk.nix
|
|
./squashfs.nix
|
|
./ssh
|
|
./users.nix
|
|
./vlan
|
|
./watchdog
|
|
./wlan.nix
|
|
./nixpkgs.nix
|
|
];
|
|
}
|