diff --git a/hosts/common/default.nix b/hosts/common/default.nix index 78e2539..698991f 100644 --- a/hosts/common/default.nix +++ b/hosts/common/default.nix @@ -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 diff --git a/hosts/common/services/nixseparatedebuginfod.nix b/hosts/common/services/nixseparatedebuginfod.nix new file mode 100644 index 0000000..5995c95 --- /dev/null +++ b/hosts/common/services/nixseparatedebuginfod.nix @@ -0,0 +1,6 @@ +{ config, ... }: { + services.nixseparatedebuginfod = { + enable = true; + nixPackage = config.nix.package; + }; +}