diff options
Diffstat (limited to 'nixos/common.nix')
-rw-r--r-- | nixos/common.nix | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/nixos/common.nix b/nixos/common.nix index 798fbc0..a967e7d 100644 --- a/nixos/common.nix +++ b/nixos/common.nix @@ -62,6 +62,8 @@ nix.gc.automatic = true; nix.gc.options = "--delete-older-than 30d"; nix.settings.experimental-features = [ "nix-command" "flakes" ]; + nix.settings.substituters = [ "https://nix.web.deuxfleurs.fr" ]; + nix.settings.trusted-public-keys = [ "nix.web.deuxfleurs.fr:eTGL6kvaQn6cDR/F9lDYUIP9nCVR/kkshYfLDJf1yKs=" ]; environment.systemPackages = with pkgs; [ home-manager |