diff --git a/blog/nix-flakes-4-wsl-2022-05-01.markdown b/blog/nix-flakes-4-wsl-2022-05-01.markdown index 801e75b..1608e61 100644 --- a/blog/nix-flakes-4-wsl-2022-05-01.markdown +++ b/blog/nix-flakes-4-wsl-2022-05-01.markdown @@ -1,6 +1,6 @@ --- title: "Nix Flakes on WSL" -date: 2022-05-04 +date: 2022-05-01 series: nix-flakes tags: - nixos @@ -298,6 +298,13 @@ Then we can add `gohello` to our system flake: } ``` +The block of code under +gohello.nixosModule is an inline NixOS module. If we put +gohello.nixosModule before the ./configuration.nix +reference, we could put the xeserv.services.gohello.enable = true; +line inside ./configuration.nix. This is an exercise for the +reader. + And rebuild the system with `gohello` enabled: ```