{ config, lib, pkgs, ... }: let inherit (lib) mkIf mkMerge mkThenElse; annuaire = config.r6d.machines; currentMachine = annuaire."${config.networking.fqdn}"; flags = currentMachine.configurationFlags; in mkIf true { # Paquets environment.systemPackages = with pkgs; [ ]; # Services # Réseau networking.firewall = { allowedTCPPorts = [ ]; allowedUDPPorts = [ ]; }; } // { assertions = [ { assertion = true; message = "Assetion toujours valide."; } ]; }