diff options
author | stuebinm | 2023-02-20 23:51:50 +0100 |
---|---|---|
committer | stuebinm | 2023-02-20 23:51:50 +0100 |
commit | 44dcbe7203736c41346fb4f13e850b5ddf551e7e (patch) | |
tree | 735c94dc2b2f5c4808390997250c2f6e6e49dc3c /flora | |
parent | 18389bdc301a3d00306f4578a159d7967b5e7580 (diff) |
flora: don't have an akkoma that depends on X / GTK+
Diffstat (limited to 'flora')
-rw-r--r-- | flora/services/akkoma.nix | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/flora/services/akkoma.nix b/flora/services/akkoma.nix index 953541b..efc693e 100644 --- a/flora/services/akkoma.nix +++ b/flora/services/akkoma.nix @@ -2,7 +2,12 @@ let - unstable = import inputs.nixpkgs-unstable { inherit system; }; + unstable = import inputs.nixpkgs-unstable { + inherit system; + overlays = [ (self: super: rec { + beamPackages = super.beam.packagesWith super.erlang_nox; + }) ]; + }; staticDir = "/var/lib/akkoma/static"; in { |