From 87c6114ed2a534ffd3700eae85f452b7f583c15a Mon Sep 17 00:00:00 2001 From: kenny Date: Sun, 10 Aug 2025 00:51:55 +0300 Subject: [PATCH] Updated certificate name --- modules/common/networking.nix | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/modules/common/networking.nix b/modules/common/networking.nix index e15b6da..0153dbf 100644 --- a/modules/common/networking.nix +++ b/modules/common/networking.nix @@ -1,4 +1,8 @@ -{ config, pkgs, ... }: { +{ + config, + pkgs, + ... +}: { networking.networkmanager.enable = true; time.timeZone = "Europe/Bucharest"; i18n.defaultLocale = "en_US.UTF-8"; @@ -15,17 +19,17 @@ LC_TIME = "ro_RO.UTF-8"; }; - environment.systemPackages = with pkgs; [ torsocks ]; + environment.systemPackages = with pkgs; [torsocks]; # 9050,9063,8118(HTTP) services.tor = { enable = true; client.enable = true; openFirewall = true; - settings = { ControlPort = 9051; }; + settings = {ControlPort = 9051;}; }; - security.pki.certificates = [ "/home/user/.config/bigbox.crt" ]; + security.pki.certificates = ["/home/user/.config/bigbox.local.crt"]; networking.extraHosts = '' 192.168.0.101 box.local @@ -35,7 +39,6 @@ services.chrony = { enable = true; enableNTS = true; - servers = - [ "nts.teambelgium.net" "ptbtime1.ptb.de" "paris.time.system76.com" ]; + servers = ["nts.teambelgium.net" "ptbtime1.ptb.de" "paris.time.system76.com"]; }; }