pureintent: direct access

This commit is contained in:
Sridhar Ratnakumar 2025-11-19 20:43:09 -05:00
parent 76c4f40e2a
commit 8983896a17
3 changed files with 3 additions and 9 deletions

View file

@ -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. Its perfectly fine and recommended to leave

View file

@ -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

View file

@ -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;