From d4a5d45f683ca2fe1a8abeee6e1d7768082c768b Mon Sep 17 00:00:00 2001 From: Dominik Polakovics Date: Tue, 5 Dec 2023 20:11:40 +0100 Subject: [PATCH] add fleet and gitea unsecure --- hosts/fw.cloonar.com/configuration.nix | 2 ++ hosts/fw.cloonar.com/modules/gitea.nix | 3 +++ 2 files changed, 5 insertions(+) diff --git a/hosts/fw.cloonar.com/configuration.nix b/hosts/fw.cloonar.com/configuration.nix index ddab15b..8aea0e6 100644 --- a/hosts/fw.cloonar.com/configuration.nix +++ b/hosts/fw.cloonar.com/configuration.nix @@ -1,5 +1,6 @@ { lib, pkgs, ... }: { imports = [ + ./fleet.nix ./utils/bento.nix ./utils/modules/sops.nix ./utils/modules/lego/lego.nix @@ -65,6 +66,7 @@ ethtool # manage NIC settings (offload, NIC feeatures, ...) tcpdump # view network traffic conntrack-tools # view network connection states + bento ]; nix.gc = { diff --git a/hosts/fw.cloonar.com/modules/gitea.nix b/hosts/fw.cloonar.com/modules/gitea.nix index aa9dad7..3228068 100644 --- a/hosts/fw.cloonar.com/modules/gitea.nix +++ b/hosts/fw.cloonar.com/modules/gitea.nix @@ -16,6 +16,9 @@ let }; in { + nixpkgs.config.permittedInsecurePackages = [ + "gitea-1.19.4" + ]; users.users.gitea = user; users.groups.gitea = group;