All my system configs and packages in one repo
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

systems/bavette: fix issues related to update

+21 -2
+2 -2
overlay.nix
··· 22 22 # See https://github.com/NixOS/nixpkgs/pull/453871 23 23 # See https://github.com/jj-vcs/jj/issues/5723 24 24 (prev.fetchpatch2 { 25 - url = "https://github.com/pluiedev/jj/commit/daa88d4dd485ed0c188023d2af8f811fd4db4a14.patch"; 26 - hash = "sha256-6fDLHVB/tZMNxD7okUVpgT7Fd77KCWThVANJ/Xqg1Xc="; 25 + url = "https://github.com/pluiedev/jj/commit/c7b5308e2c093e762f723836392602fbb4917299.patch"; 26 + hash = "sha256-OCNoyH1h7gxjaBdZB4o4hiv1mWNxJGYmBefHA4Q/860="; 27 27 }) 28 28 ]; 29 29 doCheck = false;
+19
systems/bavette/configuration.nix
··· 37 37 # nftables to stop working. Not that this little thing 38 38 # needs extra security anyways. 39 39 networking.firewall.checkReversePath = false; 40 + 41 + # FIXME: specializations don't work with mobile-nixos, 42 + # so we need to hardcode this for now 43 + 44 + # cache.nixos.org is *unbearably* slow when accessed from Mainland China. 45 + # Fortunately, mirror sites exist... Hooray(?) 46 + nix.settings.substituters = map (url: "${url}/nix-channels/store") [ 47 + "https://mirrors.ustc.edu.cn" 48 + "https://mirrors6.tuna.tsinghua.edu.cn" 49 + "https://mirrors.tuna.tsinghua.edu.cn" 50 + # "https://mirror.sjtu.edu.cn" # FIXME: buggy? 51 + ]; 52 + 53 + # Redirect all traffic through proxy 54 + networking.proxy.allProxy = "http://127.0.0.1:2080"; 55 + nix.settings.impure-env = [ 56 + "all_proxy=http://127.0.0.1:2080" 57 + "GOPROXY=https://goproxy.cn" 58 + ]; 40 59 }