fix: Fixed an issue with the default template.

This commit is contained in:
Spencer Brower
2022-09-02 16:01:52 -04:00
parent ad596709a7
commit b9442f4f38

View File

@@ -14,9 +14,9 @@
(system: { (system: {
formatter = nixpkgs.legacyPackages.${system}.nixpkgs-fmt; formatter = nixpkgs.legacyPackages.${system}.nixpkgs-fmt;
}) // { }) // {
nixosModules.default = { config, nixpkgs, ... }: { nixosModules.default = { config, pkgs, ... }: {
config = { config = {
environment.systemPackages = with nixpkgs; [ git ]; environment.systemPackages = with [ pkgs.git ];
/* Your config here */ /* Your config here */
}; };
}; };