common/nixseparatedebuginfod: init

This commit is contained in:
Oystein Kristoffer Tveit 2025-03-14 22:49:57 +01:00
parent c885d4f515
commit 881c5f3633
Signed by: oysteikt
GPG Key ID: 9F2F7D8250F35146
2 changed files with 7 additions and 0 deletions

@ -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

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