aboutsummaryrefslogtreecommitdiff
path: root/modules/private/environment.nix
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2020-07-16 03:02:07 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2020-07-17 01:03:17 +0200
commit4c42e0beb65d2a92e988a81aa12f50aa6bd1f820 (patch)
tree56c7ff14e0c2774634f53365b2a2342e0dbd2419 /modules/private/environment.nix
parent5a61f6ad5164a735be26e016c59e72252ffb49b7 (diff)
downloadNix-4c42e0beb65d2a92e988a81aa12f50aa6bd1f820.tar.gz
Nix-4c42e0beb65d2a92e988a81aa12f50aa6bd1f820.tar.zst
Nix-4c42e0beb65d2a92e988a81aa12f50aa6bd1f820.zip
Add assets website for immae
Diffstat (limited to 'modules/private/environment.nix')
-rw-r--r--modules/private/environment.nix10
1 files changed, 10 insertions, 0 deletions
diff --git a/modules/private/environment.nix b/modules/private/environment.nix
index 069a344..193e95c 100644
--- a/modules/private/environment.nix
+++ b/modules/private/environment.nix
@@ -856,6 +856,16 @@ in
856 type = submodule { 856 type = submodule {
857 options = { 857 options = {
858 contact = mkOption { type = str; description = "Contact e-mail address"; }; 858 contact = mkOption { type = str; description = "Contact e-mail address"; };
859 assets = mkOption {
860 default = {};
861 type = attrsOf (submodule {
862 options = {
863 url = mkOption { type = str; description = "URL to fetch"; };
864 sha256 = mkOption { type = str; description = "Hash of the url"; };
865 };
866 });
867 description = "Assets to provide on assets.immae.eu";
868 };
859 davical = mkOption { 869 davical = mkOption {
860 description = "Davical configuration"; 870 description = "Davical configuration";
861 type = submodule { 871 type = submodule {