templates.nix (316B)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
## Flake Template ## {inputs, ...}: { flake.templates.default = with inputs.filters.lib; { description = "My NixOS Configuration"; path = filter { root = ../../.; exclude = [ ../../site (matchExt "md") (matchExt "gpg") (matchExt "secret") ]; }; }; }