From 22087034873daec5ed925acc3310fd0ec14aaf86 Mon Sep 17 00:00:00 2001 From: Xe Iaso Date: Sat, 30 Apr 2022 16:44:38 -0400 Subject: [PATCH] more edits Signed-off-by: Xe Iaso --- blog/nix-flakes-4-wsl-2022-05-01.markdown | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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: ```