spec(eientei): add proxy configuration

This commit is contained in:
514fpv 2024-02-02 01:59:11 +08:00
parent 61877c9c4f
commit b2fb07b698
Signed by: koishi
SSH key fingerprint: SHA256:652+A2yCgByK6j4+urGiApE+tZbISyelwTnr76Tm+x8

View file

@ -29,6 +29,11 @@
};
boot.initrd.systemd.services.zfs-import-eientei.after = [ "cryptsetup.target" ];
networking.proxy = {
default = "socks5://192.168.1.253:1080";
noProxy = "127.0.0.1,localhost,.localdomain";
};
imports = lib.pipe ./. [
builtins.readDir
(lib.filterAttrs (n: ty: ty == "regular" && n != "default.nix"))