common/nixseparatedebuginfod: init

This commit is contained in:
2025-03-14 22:49:57 +01:00
parent c885d4f515
commit 881c5f3633
2 changed files with 7 additions and 0 deletions

View File

@@ -21,6 +21,7 @@ in {
./services/libinput.nix
./services/locate.nix
./services/logind.nix
./services/nixseparatedebuginfod.nix
./services/openssh.nix
./services/pcscd.nix
./services/pipewire.nix

View File

@@ -0,0 +1,6 @@
{ config, ... }: {
services.nixseparatedebuginfod = {
enable = true;
nixPackage = config.nix.package;
};
}