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 */ }; };