From b9442f4f380fec2b7c66af8c7e9b073ccbd5c570 Mon Sep 17 00:00:00 2001 From: Spencer Brower Date: Fri, 2 Sep 2022 16:01:52 -0400 Subject: [PATCH] fix: Fixed an issue with the default template. --- templates/default/flake.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/default/flake.nix b/templates/default/flake.nix index 3a58271..f7fe4c0 100644 --- a/templates/default/flake.nix +++ b/templates/default/flake.nix @@ -14,9 +14,9 @@ (system: { formatter = nixpkgs.legacyPackages.${system}.nixpkgs-fmt; }) // { - nixosModules.default = { config, nixpkgs, ... }: { + nixosModules.default = { config, pkgs, ... }: { config = { - environment.systemPackages = with nixpkgs; [ git ]; + environment.systemPackages = with [ pkgs.git ]; /* Your config here */ }; };