From 4c413864b3fb9a6d0acab53c5c41d175cb35ddf5 Mon Sep 17 00:00:00 2001 From: Rodrigo Arias Mallo Date: Mon, 22 Jan 2024 16:05:38 +0100 Subject: [PATCH] Add gdb and comment about nscd daemon --- configuration.nix | 2 ++ vm.nix | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/configuration.nix b/configuration.nix index 92621aa..817ca89 100644 --- a/configuration.nix +++ b/configuration.nix @@ -37,4 +37,6 @@ ]; }; }; + + environment.systemPackages = with pkgs; [ gdb ]; } diff --git a/vm.nix b/vm.nix index c74e955..8a30d99 100644 --- a/vm.nix +++ b/vm.nix @@ -26,6 +26,7 @@ virtualisation.diskImage = null; - # FIXME: Broken with a libc trap + # FIXME: Broken as rustc injects compressed instructions. + # For now we disable it. services.nscd.enableNsncd = false; }