NixOS deployment for LinuxLab
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
246 B

  1. { config, ... }:
  2. {
  3. nix.settings = {
  4. substituters = [
  5. "http://cache.${config.networking.domain}"
  6. ];
  7. trusted-public-keys = [
  8. "cache.${config.networking.domain}:ugWyeMyNqHvSEXDVgcPZ5NCniqq0wqKQCb3rjqXb/jU="
  9. ];
  10. };
  11. }