Deployment and lifecycle management for Nix
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fixup! chore: upgrade elixir 17 and erlang 27

+4 -1
+4 -1
nix/nixos-server.nix
··· 7 7 let 8 8 cfg = config.services.sower.server; 9 9 jsonType = (pkgs.formats.json { }).type; 10 + 11 + beamPackages = pkgs.beam.packagesWith pkgs.erlang_27; 12 + elixir = beamPackages.elixir_1_17; 10 13 in 11 14 { 12 15 options = { ··· 15 18 16 19 package = lib.mkOption { 17 20 type = lib.types.package; 18 - default = pkgs.callPackage ./server-package.nix { }; 21 + default = pkgs.callPackage ./server-package.nix { inherit beamPackages elixir; }; 19 22 }; 20 23 21 24 secrets = lib.mkOption {