12 lines
220 B
Nix
12 lines
220 B
Nix
# Inspire du club reseau
|
|
{ lib, ... }:
|
|
{
|
|
imports = [ ./modules/my.nix ];
|
|
|
|
my = {
|
|
email = "hackens@clipper.ens.fr";
|
|
acmeStaging = lib.mkDefault true;
|
|
debug = false;
|
|
subZone = "new.hackens.org";
|
|
};
|
|
}
|