aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--overlays/environments/immae-eu.nix4
-rw-r--r--overlays/pelican/default.nix2
2 files changed, 3 insertions, 3 deletions
diff --git a/overlays/environments/immae-eu.nix b/overlays/environments/immae-eu.nix
index a5e277e..db1caa4 100644
--- a/overlays/environments/immae-eu.nix
+++ b/overlays/environments/immae-eu.nix
@@ -35,7 +35,7 @@ let
35 bogofilter fetchmail 35 bogofilter fetchmail
36 36
37 # git 37 # git
38 vcsh gitRepo gitAndTools.stgit tig 38 vcsh gitRepo gitAndTools.stgit tig ripgrep
39 39
40 # graphical tools 40 # graphical tools
41 nextcloud-client firefox 41 nextcloud-client firefox
@@ -109,7 +109,7 @@ let
109 s6-portable-utils 109 s6-portable-utils
110 110
111 # other tools 111 # other tools
112 pgloader s3cmd lftp jq cpulimit libxslt 112 pgloader s3cmd lftp jq cpulimit libxslt gandi-cli
113 113
114 # Terraform + AWS 114 # Terraform + AWS
115 terraform_0_12 awscli 115 terraform_0_12 awscli
diff --git a/overlays/pelican/default.nix b/overlays/pelican/default.nix
index 5f60b8f..5a487aa 100644
--- a/overlays/pelican/default.nix
+++ b/overlays/pelican/default.nix
@@ -1,6 +1,6 @@
1self: super: { 1self: super: {
2 pelican = with self.python3Packages; 2 pelican = with self.python3Packages;
3 pelican.overrideAttrs(old: self.mylibs.fetchedGithub ./pelican.json // { 3 pelican.overrideAttrs(old: self.mylibs.fetchedGithub ./pelican.json // {
4 propagatedBuildInputs = old.propagatedBuildInputs ++ [ pyyaml ]; 4 propagatedBuildInputs = old.propagatedBuildInputs ++ [ pyyaml markdown ];
5 }); 5 });
6} 6}