forked from Fediversity/Fediversity
add pkgs.git, helps suppress warning on missing git when pressing deploy button
This commit is contained in:
parent
ef0d01bcd5
commit
50ff67a9bd
1 changed files with 5 additions and 1 deletions
|
@ -142,7 +142,11 @@ in
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
nixpkgs.overlays = [ (import ./overlay.nix) ];
|
nixpkgs.overlays = [ (import ./overlay.nix) ];
|
||||||
|
|
||||||
environment.systemPackages = [ manage-admin ];
|
environment.systemPackages = [
|
||||||
|
manage-admin
|
||||||
|
# helps suppress warning on missing git when pressing deploy button
|
||||||
|
pkgs.git
|
||||||
|
];
|
||||||
|
|
||||||
services = {
|
services = {
|
||||||
nginx.enable = true;
|
nginx.enable = true;
|
||||||
|
|
Loading…
Add table
Reference in a new issue