chore: switch to @kamillaova's caching proxy
This commit is contained in:
parent
e751e0e108
commit
d4fef260a1
2 changed files with 10 additions and 3 deletions
|
@ -10,6 +10,9 @@
|
|||
extra-trusted-public-keys = [
|
||||
"nix-community.cachix.org-1:mB9FSh9qf2dCimDSUo8Zy7bkq5CX+/rkCWyvRCYg3Fs="
|
||||
];
|
||||
substituters = [
|
||||
"https://cache.kamillaova.dev/?priority=1"
|
||||
];
|
||||
};
|
||||
|
||||
inputs = {
|
||||
|
|
|
@ -1,10 +1,14 @@
|
|||
{ abs, pkgs, ... }:
|
||||
|
||||
{
|
||||
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
||||
nix.settings.trusted-users = [ "@wheel" ];
|
||||
nix.settings = {
|
||||
trusted-users = [ "@wheel" ];
|
||||
experimental-features = [ "nix-command" "flakes" ];
|
||||
substituters = [
|
||||
"https://cache.kamillaova.dev/?priority=1"
|
||||
];
|
||||
};
|
||||
nixpkgs.config.allowUnfree = true;
|
||||
# nix.settings.sandbox = false;
|
||||
|
||||
time.timeZone = "Europe/Moscow";
|
||||
i18n.defaultLocale = "en_US.UTF-8";
|
||||
|
|
Loading…
Reference in a new issue