nixos-config/hosts/chunk/harmonia.nix

10 lines
197 B
Nix
Raw Permalink Normal View History

2025-01-05 18:21:20 -05:00
{ config, ... }: {
services.harmonia = {
enable = true;
signKeyPaths = [ config.sops.secrets."harmonia/key".path ];
settings = {
real_nix_store = "/mnt/harmonia";
};
};
}