blob: 82e03b2fd365e4cd90f0aafaf9a0e5ef1b98ecfb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
---
tags:
- nix
- nixos
references:
- https://nixos.wiki/wiki/Nixos-rebuild
---
When rebuilding on a remote it might spew an error containing: "is lacking a valid signature". To remedy this we need to add our non-root user as a trusted user;
```
nix.extraOptions = ''
trusted-users jras
'';
```
|