From 8983896a17d87e3de1d36e6cc6e509b415b967aa Mon Sep 17 00:00:00 2001 From: Sridhar Ratnakumar Date: Wed, 19 Nov 2025 20:43:09 -0500 Subject: [PATCH] pureintent: direct access --- configurations/nixos/pureintent/configuration.nix | 6 ------ configurations/nixos/pureintent/default.nix | 2 +- modules/home/all/vira.nix | 4 ++-- 3 files changed, 3 insertions(+), 9 deletions(-) diff --git a/configurations/nixos/pureintent/configuration.nix b/configurations/nixos/pureintent/configuration.nix index a70ea46..877efe6 100644 --- a/configurations/nixos/pureintent/configuration.nix +++ b/configurations/nixos/pureintent/configuration.nix @@ -92,12 +92,6 @@ # Enable the OpenSSH daemon. services.openssh.enable = true; - # Open ports in the firewall. - # networking.firewall.allowedTCPPorts = [ ... ]; - # networking.firewall.allowedUDPPorts = [ ... ]; - # Or disable the firewall altogether. - # networking.firewall.enable = false; - # This value determines the NixOS release from which the default # settings for stateful data, like file locations and database versions # on your system were taken. It‘s perfectly fine and recommended to leave diff --git a/configurations/nixos/pureintent/default.nix b/configurations/nixos/pureintent/default.nix index c706d6d..adc20d0 100644 --- a/configurations/nixos/pureintent/default.nix +++ b/configurations/nixos/pureintent/default.nix @@ -17,6 +17,7 @@ in users.users.${flake.config.me.username}.linger = true; home-manager.sharedModules = [ "${homeMod}/all/vira.nix" + "${homeMod}/all/juspay.nix" # (self + /modules/home/all/dropbox.nix) # Remote builders @@ -39,7 +40,6 @@ in networking.firewall.allowedTCPPorts = [ 80 443 - 5001 ]; programs.nix-ld.enable = true; # for vscode server diff --git a/modules/home/all/vira.nix b/modules/home/all/vira.nix index 5ba02e4..655e3eb 100644 --- a/modules/home/all/vira.nix +++ b/modules/home/all/vira.nix @@ -17,8 +17,8 @@ in services.vira = { enable = true; port = 5001; - hostname = "127.0.0.1"; - https = false; # Using tailscale services + hostname = "0.0.0.0"; + # https = false; # Using tailscale services autoResetState = true; autoBuildNewBranches = true; package = inputs.vira.packages.${pkgs.system}.default;