This repository has been archived on 2024-04-07. You can view files and clone it, but cannot push or open issues or pull requests.
nixos-config/system/nix-serve.nix

7 lines
153 B
Nix
Raw Permalink Normal View History

{ config, pkgs, lib, ... }: {
services.nix-serve = {
enable = true;
2023-01-25 18:02:44 +01:00
secretKeyFile = config.age.secrets.monolith-nix-serve-privkey.path;
};
}