jungle/m/module/debuginfod.nix
Aleix Roca Nonell a92432cf5a Enable nixseparatedebuginfod module
The module is only enabled on Hut and Eudy because we noticed activity
on the debuginfod service even if no debug session was active.

Reviewed-by: Rodrigo Arias Mallo <rodrigo.arias@bsc.es>
2023-12-04 11:04:52 +01:00

13 lines
211 B
Nix

{ theFlake, ... }:
let
nixseparatedebuginfod = theFlake.inputs.nixseparatedebuginfod;
in
{
imports = [
nixseparatedebuginfod.nixosModules.default
];
services.nixseparatedebuginfod.enable = true;
}