chore: disable nixseparatedebuginfod for now due to bug

This commit is contained in:
oddlama 2023-09-21 00:32:33 +02:00
parent 143609b933
commit 0991e7cb15
No known key found for this signature in database
GPG key ID: 14EFE510775FE39A
2 changed files with 8 additions and 3 deletions

View file

@ -8,7 +8,6 @@
inputs.home-manager.nixosModules.default
inputs.impermanence.nixosModules.impermanence
inputs.nixos-nftables-firewall.nixosModules.default
inputs.nixseparatedebuginfod.nixosModules.default
../users/root

View file

@ -1,10 +1,16 @@
{pkgs, ...}: {
{
inputs,
pkgs,
...
}: {
imports = [
inputs.nixseparatedebuginfod.nixosModules.default
./documentation.nix
./yubikey.nix
];
environment.systemPackages = [pkgs.man-pages pkgs.man-pages-posix];
environment.enableDebugInfo = true;
services.nixseparatedebuginfod.enable = true;
# XXX: TODO reenable once https://github.com/symphorien/nixseparatedebuginfod/issues/11 is answered
services.nixseparatedebuginfod.enable = false;
}