File tree Expand file tree Collapse file tree 12 files changed +16
-18
lines changed Expand file tree Collapse file tree 12 files changed +16
-18
lines changed Original file line number Diff line number Diff line change 17
17
echo >> doc/book.toml
18
18
echo 'theme="theme"' >> doc/book.toml
19
19
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
21
21
git add doc/theme
22
22
- name : Build
23
23
run : nix build .#doc
Original file line number Diff line number Diff line change 2
2
3
3
<p align =" center " >
4
4
<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 >
6
6
<a href =" doc/src/SUMMARY.md " >Markdown</a >
7
7
•
8
8
<strong ><a href =" https://matrix.to/#/#microvm.nix:envs.net " >Matrix chat</a ></strong >
9
9
•
10
10
<strong ><a href =" ./CHANGELOG.md " >Changelog</a ></strong >
11
- •
12
- <strong ><a href =" https://github.com/sponsors/astro " >Support the project</a ></strong >
13
11
</p >
14
12
<p align =" center " >
15
13
<img src =" doc/src/demo.gif " alt =" Demo GIF " >
@@ -61,11 +59,11 @@ imperatively with the provided `microvm` command.
61
59
## Installation
62
60
63
61
``` shell
64
- nix registry add microvm github:astro /microvm.nix
62
+ nix registry add microvm github:microvm-nix /microvm.nix
65
63
```
66
64
67
65
(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
69
67
examples.)
70
68
71
69
## Start writing your own NixOS MicroVM definitions
Original file line number Diff line number Diff line change @@ -6,4 +6,4 @@ src = "src"
6
6
title = " microvm.nix"
7
7
8
8
[output .html ]
9
- git-repository-url = " https://github.com/astro /microvm.nix"
9
+ git-repository-url = " https://github.com/microvm-nix /microvm.nix"
Original file line number Diff line number Diff line change @@ -31,5 +31,5 @@ virtualize other operating systems than NixOS.
31
31
- The runner package must have a file layout as described in the table
32
32
above.
33
33
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
35
35
example of a Flake that can run on a microvm.nix host.
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ settings:
29
29
inputs = {
30
30
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
31
31
microvm = {
32
- url = "github:astro /microvm.nix";
32
+ url = "github:microvm-nix /microvm.nix";
33
33
inputs.nixpkgs.follows = "nixpkgs";
34
34
};
35
35
};
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ augmented by importing this flake's `nixosModule.microvm`:
15
15
# Example flake.nix
16
16
{
17
17
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";
19
19
inputs.microvm.inputs.nixpkgs.follows = "nixpkgs";
20
20
21
21
outputs = { self, nixpkgs, microvm }: {
@@ -37,4 +37,4 @@ augmented by importing this flake's `nixosModule.microvm`:
37
37
```
38
38
39
39
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.
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ up using the `-m`/`--merge` switch.
61
61
62
62
Yes. This scenario is enabled through the flake's ` lib.buildRunner `
63
63
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 )
65
65
script that you will need to customize to fit your deployment scenario.
66
66
67
67
## How can I deploy imperatively from Continuous Integration?
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ Prepare your host by including the microvm.nix `host` nixosModule:
17
17
# Your server's flake.nix
18
18
{
19
19
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";
21
21
inputs.microvm.inputs.nixpkgs.follows = "nixpkgs";
22
22
23
23
outputs = { self, nixpkgs, microvm }: {
@@ -51,6 +51,6 @@ module directly in your NixOS configuration:
51
51
52
52
``` nix
53
53
imports = [ (builtins.fetchGit {
54
- url = "https://github.com/astro /microvm.nix";
54
+ url = "https://github.com/microvm-nix /microvm.nix";
55
55
} + "/nixos-modules/host") ];
56
56
```
Original file line number Diff line number Diff line change @@ -20,5 +20,5 @@ available for customization. These are the most important ones:
20
20
| ` microvm.writableStoreOverlay ` | Optional string of the path where all writes to ` /nix/store ` should go to. |
21
21
22
22
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 )
24
24
for a full reference.
Original file line number Diff line number Diff line change 7
7
} ;
8
8
9
9
inputs . microvm = {
10
- url = "github:astro /microvm.nix" ;
10
+ url = "github:microvm-nix /microvm.nix" ;
11
11
inputs . nixpkgs . follows = "nixpkgs" ;
12
12
} ;
13
13
You can’t perform that action at this time.
0 commit comments