nix-openwrt-imagebuilder/example.nix
Emery Hemingway 6ba2d4800f Split packages into includes and excludes
Packages can still be excluded with the include list by prefixing
with "-", this is discouraged.
2022-07-12 12:08:36 -05:00

19 lines
375 B
Nix

{ pkgs, ... }:
{
system.profile = "avm_fritz7412";
packages.include = [ "tcpdump" "vxlan" "kmod-vxlan" ];
files = pkgs.runCommandNoCC "image-files" { } ''
mkdir -p $out/etc/uci-defaults
cat > $out/etc/uci-defaults/99-custom <<EOF
uci -q batch << EOI
set system.@system[0].hostname='testap'
commit
EOI
EOF
'';
}