Skip to content

Commit fa39999

Browse files
committed
Version 0.5 → 0.6
1 parent d2cdee0 commit fa39999

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

manuscript/ContinuousIntegrationDeployment.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,13 +51,13 @@ This exercise will build upon the same example as the [previous chapter on Terra
5151
```bash
5252
$ mkdir todo-app
5353
$ cd todo-app
54-
$ nix flake init --template 'github:Gabriella439/nixos-in-production/0.5#terraform'
54+
$ nix flake init --template 'github:Gabriella439/nixos-in-production/0.6#terraform'
5555
```
5656

5757
… or you can skip straight to the final result (minus the secrets file) by running:
5858

5959
```bash
60-
$ nix flake init --template 'github:Gabriella439/nixos-in-production/0.5#continuous-deployment'
60+
$ nix flake init --template 'github:Gabriella439/nixos-in-production/0.6#continuous-deployment'
6161
```
6262

6363
garnix requires the use of Nix flakes in order to support [efficient evaluation caching](https://www.tweag.io/blog/2020-06-25-eval-cache/) and the good news is that we can already build our NixOS system without any changes to our flake, but it might not be obvious how at first glance.

manuscript/Setup.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ If you are using Linux (including NixOS or the Windows Subsystem for Linux) you
200200
Run the following command to generate your first project:
201201

202202
```bash
203-
$ nix flake init --template 'github:Gabriella439/nixos-in-production/0.5#setup'
203+
$ nix flake init --template 'github:Gabriella439/nixos-in-production/0.6#setup'
204204
```
205205

206206
… that will generate the following `flake.nix` file:

manuscript/Terraform.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ the list of [AWS service endpoints](https://docs.aws.amazon.com/general/latest/g
4848
Now run the following command to bootstrap our first Terraform project:
4949

5050
```bash
51-
$ nix flake init --template 'github:Gabriella439/nixos-in-production/0.5#terraform'
51+
$ nix flake init --template 'github:Gabriella439/nixos-in-production/0.6#terraform'
5252
```
5353

5454
… which will generate the following files:

manuscript/WebServer.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ Now that we can build and run a local NixOS virtual machine we can create our fi
77
We'll begin from the template project from "Setting up your development environment". You can either begin from the previous chapter by running the following command (if you haven't done so already):
88

99
```bash
10-
$ nix flake init --template 'github:Gabriella439/nixos-in-production/0.5#setup'
10+
$ nix flake init --template 'github:Gabriella439/nixos-in-production/0.6#setup'
1111
```
1212

1313
… or if you want to skip straight to the final result at the end of this chapter you can run:
1414

1515
```bash
16-
$ nix flake init --template 'github:Gabriella439/nixos-in-production/0.5#server'
16+
$ nix flake init --template 'github:Gabriella439/nixos-in-production/0.6#server'
1717
```
1818

1919
Let's modify `module.nix` to specify a machine that serves a simple static "Hello, world!" page on `http://localhost`:

0 commit comments

Comments
 (0)