Updated certificate name

This commit is contained in:
2025-08-10 00:51:55 +03:00
parent bfa7a966f7
commit 87c6114ed2

View File

@@ -1,4 +1,8 @@
{ config, pkgs, ... }: { {
config,
pkgs,
...
}: {
networking.networkmanager.enable = true; networking.networkmanager.enable = true;
time.timeZone = "Europe/Bucharest"; time.timeZone = "Europe/Bucharest";
i18n.defaultLocale = "en_US.UTF-8"; i18n.defaultLocale = "en_US.UTF-8";
@@ -25,7 +29,7 @@
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 = '' networking.extraHosts = ''
192.168.0.101 box.local 192.168.0.101 box.local
@@ -35,7 +39,6 @@
services.chrony = { services.chrony = {
enable = true; enable = true;
enableNTS = true; enableNTS = true;
servers = servers = ["nts.teambelgium.net" "ptbtime1.ptb.de" "paris.time.system76.com"];
[ "nts.teambelgium.net" "ptbtime1.ptb.de" "paris.time.system76.com" ];
}; };
} }