From 035070cc0183724c327ff66fc9202a507c8b96fc Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Mon, 25 Sep 2023 03:17:13 -0600 Subject: [PATCH] Make sure that actions are enabled for gitea --- nixos/gitea.nix | 3 +++ nixos/machines/biskcomp.nix | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/nixos/gitea.nix b/nixos/gitea.nix index 1d72524b..07caf9fd 100644 --- a/nixos/gitea.nix +++ b/nixos/gitea.nix @@ -8,5 +8,8 @@ makeEnable config "modules.gitea" false { DOMAIN = "1896Folsom.duckdns.org"; SSH_PORT = 1123; }; + settings.actions = { + ENABLED = true; + }; }; } diff --git a/nixos/machines/biskcomp.nix b/nixos/machines/biskcomp.nix index a1357c38..f2f547ca 100644 --- a/nixos/machines/biskcomp.nix +++ b/nixos/machines/biskcomp.nix @@ -11,7 +11,7 @@ in modules.base.enable = true; modules.desktop.enable = true; - modules.xmonad.enable = true; + modules.xmonad.enable = false; modules.extra.enable = false; modules.code.enable = true; modules.games.enable = false;