From 9cdbf1eaf19096380fe4ddf633732329259aa0b1 Mon Sep 17 00:00:00 2001 From: Jade Lovelace Date: Tue, 13 Feb 2024 14:43:13 -0800 Subject: [PATCH] wow another typo --- content/posts/flakes-arent-real.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/content/posts/flakes-arent-real.md b/content/posts/flakes-arent-real.md index 9e16e7b..01df387 100644 --- a/content/posts/flakes-arent-real.md +++ b/content/posts/flakes-arent-real.md @@ -464,11 +464,11 @@ nixosConfigurations.something = nixpkgs.lib.nixosSystem { specialArgs = { myPkgs = nixpkgs; }; - modules = { - { pkgs, lib, myPkgs }: { + modules = [ + ({ pkgs, lib, myPkgs }: { # do something with myPkgs - } - }; + }) + ]; } ```