nix flake update

This commit is contained in:
2025-08-10 00:47:18 +03:00
parent 4e31203476
commit bfa7a966f7

View File

@@ -1,8 +1,4 @@
{
config,
pkgs,
...
}: {
{ config, pkgs, ... }: {
networking.networkmanager.enable = true;
time.timeZone = "Europe/Bucharest";
i18n.defaultLocale = "en_US.UTF-8";
@@ -19,17 +15,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.crt" ];
networking.extraHosts = ''
192.168.0.101 box.local
@@ -39,6 +35,7 @@
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" ];
};
}