Signal drop!
Relay (operand.online) is unreachable.
Usually, a dropped signal means an upgrade is happening. Hold on!
Sorry, no connección.
Hang in there while we get back on track
gram: legal
> ./flake.nix
{ inputs.nixpkgs.url = "git+file:///home/calliope/space/code/nixos/nixpkgs?shallow=1";
outputs = { nixpkgs, ... }: let
arch = "x86_64-linux";
pkgs = import nixpkgs { system = arch; };
elixir = pkgs.beam29Packages.elixir_1_20;
in {
packages.${arch} = { default = elixir; };
devShells.${arch}.default = with pkgs; mkShell {
packages = [ elixir inotify-tools lld nodejs ];
shellHook = "set -a; source .call; set +a;";
}; }; }