mirror of
https://github.com/srid/nixos-config.git
synced 2025-12-26 15:04:59 +08:00
pureintent: direct access
This commit is contained in:
parent
76c4f40e2a
commit
8983896a17
3 changed files with 3 additions and 9 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue