From 32a05e212429ad5f72d0ed57d2dd2f5cc39c14aa Mon Sep 17 00:00:00 2001 From: Jean-Pierre PRUNARET Date: Fri, 12 Aug 2016 11:51:40 +0200 Subject: [PATCH] MaJ template --- module-template.nix | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/module-template.nix b/module-template.nix index 18f59d8..c729d46 100644 --- a/module-template.nix +++ b/module-template.nix @@ -1,11 +1,25 @@ { config, lib, pkgs, ... }: let - inherit (lib) mkIf; + inherit (lib) mkIf mkMerge mkThenElse; cfg = config.r6d.config-generator; computers = config.r6d.computers; profiles = config.r6d.profiles; in mkIf true { + + # Paquets + environment.systemPackages = with pkgs; [ + ]; + + # Services + + # Réseau + networking.firewall = { + allowedTCPPorts = [ + ]; + allowedUDPPorts = [ + ]; + }; }