feat(nix): sign nix store packages
This commit is contained in:
parent
cc6c5c50b5
commit
b8b0ae34c6
5 changed files with 14 additions and 5 deletions
|
@ -1,7 +1,12 @@
|
|||
{ config, lib, ... }:
|
||||
{
|
||||
nix.settings.substituters = lib.mkIf (config.networking.hostName != "Infini-DESKTOP" && config.info.loc.home)
|
||||
((if config.info.loc.home then (lib.mkOrder 300) else lib.mkAfter) [
|
||||
"ssh://infini-desktop"
|
||||
]);
|
||||
nix.settings = {
|
||||
substituters = lib.mkIf (config.networking.hostName != "Infini-DESKTOP" && config.info.loc.home)
|
||||
((if config.info.loc.home then (lib.mkOrder 300) else lib.mkAfter) [
|
||||
"ssh://infini-desktop"
|
||||
]);
|
||||
trusted-public-keys = [
|
||||
"infinidoge-1:uw2A6JHHdGJ9GPk0NEDnrdfVkPp0CUY3zIvwVgNlrSk="
|
||||
];
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue