From df8c5a9dbeedb3d1c33cc8f974b58cb829b81a36 Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Fri, 8 Dec 2023 14:12:02 +0100 Subject: [PATCH] add git and bento to git container --- hosts/fw.cloonar.com/modules/gitea.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/hosts/fw.cloonar.com/modules/gitea.nix b/hosts/fw.cloonar.com/modules/gitea.nix index e311ca5..b43ed8d 100644 --- a/hosts/fw.cloonar.com/modules/gitea.nix +++ b/hosts/fw.cloonar.com/modules/gitea.nix @@ -60,6 +60,16 @@ in ../utils/bento.nix ]; + nixpkgs.overlays = [ + (import ./utils/overlays/packages.nix) + ]; + + environment.systemPackages = with pkgs; [ + bento + git + vim # my preferred editor + ]; + networking = { hostName = "git"; nameservers = [ "10.42.97.10" ];