hackens-org-configurations/hosts/hackens-org/hackens-my.nix

13 lines
220 B
Nix
Raw Permalink Normal View History

2022-03-31 09:36:51 +02:00
# Inspire du club reseau
2022-04-03 01:27:30 +02:00
{ lib, ... }:
2022-03-31 09:36:51 +02:00
{
2022-03-31 10:19:43 +02:00
imports = [ ./modules/my.nix ];
2022-03-31 09:36:51 +02:00
my = {
email = "hackens@clipper.ens.fr";
2022-04-03 01:27:30 +02:00
acmeStaging = lib.mkDefault true;
2022-03-31 12:03:21 +02:00
debug = false;
2022-03-31 10:19:43 +02:00
subZone = "new.hackens.org";
2022-03-31 09:36:51 +02:00
};
}