From c2da568c30ebc9aff9b8892d1ba66ee93a2261eb Mon Sep 17 00:00:00 2001 From: Yves Dubromelle Date: Thu, 11 Aug 2016 19:56:15 +0200 Subject: [PATCH] =?UTF-8?q?template=20d'un=20module=20nix=20fa=C3=A7on=20r?= =?UTF-8?q?6d?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- module-template.nix | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 module-template.nix diff --git a/module-template.nix b/module-template.nix new file mode 100644 index 0000000..18f59d8 --- /dev/null +++ b/module-template.nix @@ -0,0 +1,11 @@ +{ config, lib, pkgs, ... }: + +let + inherit (lib) mkIf; + cfg = config.r6d.config-generator; + computers = config.r6d.computers; + profiles = config.r6d.profiles; +in + +mkIf true { +}