99 lines
2.7 KiB
HTML
99 lines
2.7 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="/node_modules/reveal.js/dist/reveal.css" />
|
|
<link rel="stylesheet" href="/node_modules/reveal.js/dist/theme/black.css" />
|
|
<link rel="stylesheet" href="/node_modules/reveal.js/plugin/highlight/monokai.css" />
|
|
</head>
|
|
<body>
|
|
<div class="reveal">
|
|
<div class="slides">
|
|
<section>Nick's guide to Nix</section>
|
|
<section data-auto-animate>
|
|
<pre
|
|
data-id="code-animation"
|
|
><code data-trim data-line-numbers class="language-nix">
|
|
{
|
|
description = "System configuration";
|
|
}
|
|
</code></pre>
|
|
</section>
|
|
<section data-auto-animate>
|
|
<pre
|
|
data-id="code-animation"
|
|
><code data-trim data-line-numbers class="language-nix">
|
|
{
|
|
description = "System configuration";
|
|
|
|
inputs = {
|
|
|
|
};
|
|
|
|
outputs = { ... }: {
|
|
|
|
};
|
|
}
|
|
</code></pre>
|
|
</section>
|
|
<section data-auto-animate>
|
|
<pre
|
|
data-id="code-animation"
|
|
><code data-trim data-line-numbers class="language-nix">
|
|
{
|
|
description = "System configuration";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
};
|
|
|
|
outputs = { ... }: {
|
|
|
|
};
|
|
}
|
|
</code></pre>
|
|
</section>
|
|
<section data-auto-animate>
|
|
<pre
|
|
data-id="code-animation"
|
|
><code data-trim data-line-numbers class="language-nix">
|
|
{
|
|
description = "System configuration";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
};
|
|
|
|
outputs = { nixpkgs, ... }@inputs: {
|
|
|
|
};
|
|
}
|
|
</code></pre>
|
|
</section>
|
|
<section data-auto-animate>
|
|
<pre
|
|
data-id="code-animation"
|
|
><code data-trim data-line-numbers class="language-nix">
|
|
{
|
|
description = "System configuration";
|
|
|
|
inputs = {
|
|
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
|
};
|
|
|
|
outputs = { nixpkgs, ... }@inputs: {
|
|
nixosConfigurations.my-nixos-system = nixpkgs.lib.nixosSystem {
|
|
system = "x86_64-linux";
|
|
modules = [
|
|
|
|
];
|
|
};
|
|
};
|
|
}
|
|
</code></pre>
|
|
</section>
|
|
</div>
|
|
</div>
|
|
<script type="module" src="src/main.ts"></script>
|
|
</body>
|
|
</html>
|