From 295e4db6a16576eedc54957805fe4d9054815039 Mon Sep 17 00:00:00 2001 From: Daanish Syed Date: Thu, 2 Jul 2026 13:00:18 +0100 Subject: [PATCH] Allow public repository view --- nixos/configuration.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/nixos/configuration.nix b/nixos/configuration.nix index c3e8ea6..1a2438c 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -14,7 +14,9 @@ # Configure network connections interactively with nmcli or nmtui. networking.networkmanager.enable = true; + programs.fish.enable = true; + programs.tmux.enable = true; # Set your time zone. time.timeZone = "Europe/London"; @@ -80,7 +82,7 @@ }; service = { DISABLE_REGISTRATION = true; - REQUIRE_SIGNIN_VIEW = true; + REQUIRE_SIGNIN_VIEW = false; }; session.COOKIE_SECURE = true; log.LEVEL = "Info";