17 lines
321 B
Nix
17 lines
321 B
Nix
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
{
|
|
nix = {
|
|
settings = {
|
|
extra-trusted-public-keys = [
|
|
"hades-builder:AFdPgi6Qq/yKqc2V2imgzMikEkVEFCrDaHyAmOJ3MII="
|
|
];
|
|
extra-trusted-substituters = [
|
|
"http://dmz.home.opel-online.de:3000/project/jovian/channel/latest-finished"
|
|
];
|
|
};
|
|
};
|
|
|
|
}
|