chore: switch to @kamillaova's caching proxy

This commit is contained in:
alina 🌸 2024-11-24 02:35:12 +03:00
parent e751e0e108
commit d4fef260a1
Signed by: teidesu
SSH key fingerprint: SHA256:uNeCpw6aTSU4aIObXLvHfLkDa82HWH9EiOj9AXOIRpI
2 changed files with 10 additions and 3 deletions

View file

@ -10,6 +10,9 @@
extra-trusted-public-keys = [ extra-trusted-public-keys = [
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs=" "nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
]; ];
substituters = [
"https://cache.kamillaova.dev/?priority=1"
];
}; };
inputs = { inputs = {

View file

@ -1,10 +1,14 @@
{ abs, pkgs, ... }: { abs, pkgs, ... }:
{ {
nix.settings.experimental-features = [ "nix-command" "flakes" ]; nix.settings = {
nix.settings.trusted-users = [ "@wheel" ]; trusted-users = [ "@wheel" ];
experimental-features = [ "nix-command" "flakes" ];
substituters = [
"https://cache.kamillaova.dev/?priority=1"
];
};
nixpkgs.config.allowUnfree = true; nixpkgs.config.allowUnfree = true;
# nix.settings.sandbox = false;
time.timeZone = "Europe/Moscow"; time.timeZone = "Europe/Moscow";
i18n.defaultLocale = "en_US.UTF-8"; i18n.defaultLocale = "en_US.UTF-8";