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>
This commit is contained in:
2023-12-01 19:57:04 +01:00
committed by Rodrigo Arias Mallo
parent 82f5d828c2
commit a92432cf5a
5 changed files with 72 additions and 1 deletions

View File

@@ -10,6 +10,7 @@
./fs.nix
./users.nix
./slurm.nix
../module/debuginfod.nix
];
# Select this using the ID to avoid mismatches

View File

@@ -5,6 +5,7 @@
../common/main.nix
../module/ceph.nix
../module/debuginfod.nix
./gitlab-runner.nix
./monitoring.nix
./nfs.nix

12
m/module/debuginfod.nix Normal file
View File

@@ -0,0 +1,12 @@
{ theFlake, ... }:
let
nixseparatedebuginfod = theFlake.inputs.nixseparatedebuginfod;
in
{
imports = [
nixseparatedebuginfod.nixosModules.default
];
services.nixseparatedebuginfod.enable = true;
}