feat: Added git to default machine.

This commit is contained in:
Spencer Brower
2022-09-02 15:44:36 -04:00
parent 760e65a789
commit 83e949ddc0

View File

@@ -6,8 +6,9 @@
};
outputs = { self, nixpkgs, sbrow }: {
nixosModules.default = { config, ... }: {
nixosModules.default = { config, nixpkgs, ... }: {
config = {
environment.systemPackages = with nixpkgs; [ git ];
/* Your config here */
};
};