Deployment and lifecycle management for Nix
0
fork

Configure Feed

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

chore: format

+18 -2
+6 -1
apps/sower/lib/sower_web/components/core_components.ex
··· 130 130 {@title} 131 131 </p> 132 132 <p class="mt-2 text-sm leading-5">{msg}</p> 133 - <.button variant={:icon} type="button" class="group absolute top-1 right-1 p-2" aria-label={gettext("close")}> 133 + <.button 134 + variant={:icon} 135 + type="button" 136 + class="group absolute top-1 right-1 p-2" 137 + aria-label={gettext("close")} 138 + > 134 139 <.icon name="hero-x-mark-solid" class="h-5 w-5 opacity-40 group-hover:opacity-70" /> 135 140 </.button> 136 141 </div>
+4 -1
apps/sower/lib/sower_web/live/forge/connection_live/show.html.heex
··· 25 25 <.table id="repositories" rows={@connection.repositories}> 26 26 <:col :let={repository}>{repository.owner}/{repository.repo}</:col> 27 27 <:action :let={repository}> 28 - <.button variant={:secondary} phx-click={JS.push("remove_repo", value: %{repo_id: repository.id})}> 28 + <.button 29 + variant={:secondary} 30 + phx-click={JS.push("remove_repo", value: %{repo_id: repository.id})} 31 + > 29 32 Remove Repository 30 33 </.button> 31 34 </:action>
+8
justfile
··· 42 42 get-incus-openapi: 43 43 curl https://converter.swagger.io/api/convert?url=https://raw.githubusercontent.com/lxc/incus/refs/heads/main/doc/rest-api.yaml | jq . > apps/incus_client/priv/incus-rest-api.json 44 44 45 + format: format-elixir format-go 46 + 47 + format-elixir: 48 + mix format 49 + 50 + format-go: 51 + gofmt -w . 52 + 45 53 mix-nix-lock: 46 54 mix deps.get 47 55 mix deps.nix --output nix/packages/deps.nix