diff --git a/templates/default/flake.nix b/templates/default/flake.nix index 3033cf9..5090b24 100644 --- a/templates/default/flake.nix +++ b/templates/default/flake.nix @@ -6,8 +6,9 @@ }; outputs = { self, nixpkgs, sbrow }: { - nixosModules.default = { config, ... }: { + nixosModules.default = { config, nixpkgs, ... }: { config = { + environment.systemPackages = with nixpkgs; [ git ]; /* Your config here */ }; };