Deployment and lifecycle management for Nix
0
fork

Configure Feed

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

add some seeds, literally

+13
+13
priv/repo/seeds.exs
··· 9 9 # 10 10 # We recommend using the bang functions (`insert!`, `update!` 11 11 # and so on) as they will fail if something goes wrong. 12 + 13 + Enum.to_list(1..20) 14 + |> Enum.map(fn t -> 15 + name = ~s"test#{t}" 16 + 17 + Sower.Seed.new( 18 + name, 19 + "nixos", 20 + ~s"/nix/store/fqf9pp2pbcv64j0bz3mwv5grj60jkvzv-nixos-system-#{name}-24.11.20240703.9f4128e", 21 + nil, 22 + nil 23 + ) 24 + end)