From be5302cc25a506b39c253b9dc2b76706a00f0474 Mon Sep 17 00:00:00 2001 From: twoneis Date: Thu, 2 Nov 2023 05:23:57 +0100 Subject: [PATCH] removed wrong braces --- base-system/flake.nix | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/base-system/flake.nix b/base-system/flake.nix index caa57a9..fba03b8 100644 --- a/base-system/flake.nix +++ b/base-system/flake.nix @@ -25,12 +25,11 @@ ]; }; nixConfigurations.nixsurface = nixpkgs.lib.nixosSystem { - specialArgs = { inherit system; }; + specialArgs = { inherit system; }; - modules = [ - ./surface-config.nix - ]; - }; + modules = [ + ./surface-config.nix + ]; }; }; }