chore: remove obsolete Nginx configuration and related files for personal website
All checks were successful
Nix Format Check / check-format (push) Successful in 48s

This commit is contained in:
2024-11-21 23:12:31 +01:00
parent 5cb3e5fe44
commit 2cd1c77d60
7 changed files with 0 additions and 1800 deletions

View File

@ -1,15 +0,0 @@
{ config, pkgs, ... }:
let
files = builtins.removeAttrs (builtins.readDir ./.) [
"default.nix"
"mennovanleeuwen.nl"
];
# Import all other .nix files as modules
moduleFiles = builtins.map (fname: ./. + "/${fname}") (builtins.attrNames files);
in
{
# Import all the package modules
imports = moduleFiles;
}