Skip to content

Commit d9c9bd8

Browse files
committed
move from github.com/astro to github.com/microvm-nix
1 parent f30ae9b commit d9c9bd8

File tree

12 files changed

+16
-18
lines changed

12 files changed

+16
-18
lines changed

.github/workflows/doc.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
echo >> doc/book.toml
1818
echo 'theme="theme"' >> doc/book.toml
1919
mkdir doc/theme
20-
echo '<script defer data-domain="astro.github.io" src="https://p.spaceboyz.net/js/script.js"></script>' > doc/theme/head.hbs
20+
echo '<script defer data-domain="microvm-nix.github.io" src="https://p.spaceboyz.net/js/script.js"></script>' > doc/theme/head.hbs
2121
git add doc/theme
2222
- name: Build
2323
run: nix build .#doc

README.md

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,12 @@
22

33
<p align="center">
44
<strong>Handbook:</strong>
5-
<a href="https://astro.github.io/microvm.nix/">HTML</a>
5+
<a href="https://microvm-nix.github.io/microvm.nix/">HTML</a>
66
<a href="doc/src/SUMMARY.md">Markdown</a>
77
88
<strong><a href="https://matrix.to/#/#microvm.nix:envs.net">Matrix chat</a></strong>
99
1010
<strong><a href="./CHANGELOG.md">Changelog</a></strong>
11-
12-
<strong><a href="https://github.com/sponsors/astro">Support the project</a></strong>
1311
</p>
1412
<p align="center">
1513
<img src="doc/src/demo.gif" alt="Demo GIF">
@@ -61,11 +59,11 @@ imperatively with the provided `microvm` command.
6159
## Installation
6260

6361
```shell
64-
nix registry add microvm github:astro/microvm.nix
62+
nix registry add microvm github:microvm-nix/microvm.nix
6563
```
6664

6765
(If you do not want to inflict this change on your system, just
68-
replace `microvm` with `github:astro/microvm.nix` in the following
66+
replace `microvm` with `github:microvm-nix/microvm.nix` in the following
6967
examples.)
7068

7169
## Start writing your own NixOS MicroVM definitions

doc/book.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ src = "src"
66
title = "microvm.nix"
77

88
[output.html]
9-
git-repository-url = "https://github.com/astro/microvm.nix"
9+
git-repository-url = "https://github.com/microvm-nix/microvm.nix"

doc/src/conventions.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ virtualize other operating systems than NixOS.
3131
- The runner package must have a file layout as described in the table
3232
above.
3333

34-
[microvm-solo5-spt](https://github.com/astro/microvm-solo5-spt) is an
34+
[microvm-solo5-spt](https://github.com/microvm-nix/microvm-solo5-spt) is an
3535
example of a Flake that can run on a microvm.nix host.

doc/src/cpu-emulation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ settings:
2929
inputs = {
3030
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
3131
microvm = {
32-
url = "github:astro/microvm.nix";
32+
url = "github:microvm-nix/microvm.nix";
3333
inputs.nixpkgs.follows = "nixpkgs";
3434
};
3535
};

doc/src/declaring.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ augmented by importing this flake's `nixosModule.microvm`:
1515
# Example flake.nix
1616
{
1717
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
18-
inputs.microvm.url = "github:astro/microvm.nix";
18+
inputs.microvm.url = "github:microvm-nix/microvm.nix";
1919
inputs.microvm.inputs.nixpkgs.follows = "nixpkgs";
2020
2121
outputs = { self, nixpkgs, microvm }: {
@@ -37,4 +37,4 @@ augmented by importing this flake's `nixosModule.microvm`:
3737
```
3838

3939
To get you started quickly, a Flake template is included. Run `nix
40-
flake init -t github:astro/microvm.nix` in a new project directory.
40+
flake init -t github:microvm-nix/microvm.nix` in a new project directory.

doc/src/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ up using the `-m`/`--merge` switch.
6161

6262
Yes. This scenario is enabled through the flake's `lib.buildRunner`
6363
function. See the [`nix run
64-
microvm#build-microvm`](https://github.com/astro/microvm.nix/blob/main/pkgs/build-microvm.nix)
64+
microvm#build-microvm`](https://github.com/microvm-nix/microvm.nix/blob/main/pkgs/build-microvm.nix)
6565
script that you will need to customize to fit your deployment scenario.
6666

6767
## How can I deploy imperatively from Continuous Integration?

doc/src/host.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Prepare your host by including the microvm.nix `host` nixosModule:
1717
# Your server's flake.nix
1818
{
1919
inputs.nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
20-
inputs.microvm.url = "github:astro/microvm.nix";
20+
inputs.microvm.url = "github:microvm-nix/microvm.nix";
2121
inputs.microvm.inputs.nixpkgs.follows = "nixpkgs";
2222
2323
outputs = { self, nixpkgs, microvm }: {
@@ -51,6 +51,6 @@ module directly in your NixOS configuration:
5151

5252
```nix
5353
imports = [ (builtins.fetchGit {
54-
url = "https://github.com/astro/microvm.nix";
54+
url = "https://github.com/microvm-nix/microvm.nix";
5555
} + "/nixos-modules/host") ];
5656
```

doc/src/options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,5 +20,5 @@ available for customization. These are the most important ones:
2020
| `microvm.writableStoreOverlay` | Optional string of the path where all writes to `/nix/store` should go to. |
2121

2222
See [the options declarations](
23-
https://github.com/astro/microvm.nix/blob/main/nixos-modules/microvm/options.nix)
23+
https://github.com/microvm-nix/microvm.nix/blob/main/nixos-modules/microvm/options.nix)
2424
for a full reference.

flake-template/flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
};
88

99
inputs.microvm = {
10-
url = "github:astro/microvm.nix";
10+
url = "github:microvm-nix/microvm.nix";
1111
inputs.nixpkgs.follows = "nixpkgs";
1212
};
1313

0 commit comments

Comments
 (0)